You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// /// The key used to encrypt the entire [Realm].
// ///
// /// A full 64byte (512bit) key for AES-256 encryption.
// /// Once set, must be specified each time the file is used.
// final List? encryptionKey;
The text was updated successfully, but these errors were encountered:
Once it's implemented, I assume we will be able to generate a random key, encrypt the realm with that key, and then store the key securely on-device using something like flutter_secure_storage, right?
This would allow us to protect the encryption key using biometrics and create a seamless flow for the user.
lib/src/configuration.dart
// /// The key used to encrypt the entire [Realm].
// ///
// /// A full 64byte (512bit) key for AES-256 encryption.
// /// Once set, must be specified each time the file is used.
// final List? encryptionKey;
The text was updated successfully, but these errors were encountered: