fastcrypt 1.0.0 fastcrypt: ^1.0.0 copied to clipboard
A high-performance, secure encryption library for Dart, leveraging the powerful **ChaCha20-Poly1305** algorithm.
final fastCrypt = FastCrypt();
// To encrypt a message
final encrypted = fastCrypt.encryptText('Top secret message');
// To decrypt the message
final decrypted = fastCrypt.decryptText(encrypted);