encrypt_secure
Modern, high-performance encryption for Flutter.
Features
- High-security modern encryption standards
- Runtime key injection for enhanced security
- Tamper-proof data verification
- Simple, singleton-based API for easy integration
Installation
dependencies:
encrypt_secure: ^1.0.0
await EncryptionService.instance.init(
base64Key: "YOUR_BASE64_KEY",
);
final encrypted = await EncryptionService.instance.encryptString(
plainText: "Hello",
);
final decrypted = await EncryptionService.instance.decryptString(
message: encrypted,
);