encrypt_secure 0.0.2 copy "encrypt_secure: ^0.0.2" to clipboard
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,
);
0
likes
115
points
30
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A modern, high-performance Flutter encryption library providing secure data protection with runtime key injection.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, sodium_libs

More

Packages that depend on encrypt_secure