static String? tryDecryptHex(String? value, String password) { if (value == null) return null; return decryptHex(value, password); }