encrypt_secure 0.0.2
encrypt_secure: ^0.0.2 copied to clipboard
A modern, high-performance Flutter encryption library providing secure data protection with runtime key injection.
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,
);