mbx_secure_file 1.0.1
mbx_secure_file: ^1.0.1 copied to clipboard
Encrypted file storage with AES-256 + PBKDF2 for Flutter
mbx_secure_file #
mbx_secure_file
Document #
https://www.canva.com/design/DAGnesDr6cs/D1TaAF7ens5sz2GRFIJrbQ/edit
Use #
final json = jsonEncode({ 'email': 'demo@example.com', 'token': 'abc123', });
const passphrase = 'contract author';
await MbxSecureFile.saveEncryptedData(json, passphrase);
final decrypted = await MbxSecureFile.readEncryptedData(passphrase); print('Decrypted content: $decrypted');
Contact #
- Author: Nguyen Huu Nhan (NhanNH26)