An open API service indexing awesome lists of open source software.

https://github.com/alchaplinsky/cryptor

🔐 AES GCM encryption functions in Dart language
https://github.com/alchaplinsky/cryptor

Last synced: 11 months ago
JSON representation

🔐 AES GCM encryption functions in Dart language

Awesome Lists containing this project

README

          

# cryptor

AES-GCM-256 algorithm cryptor

## Usage

```dart
var text = 'SOME DATA TO ENCRYPT';
var password = 'password';

var encrypted = Cryptor.encrypt(text, password);
var decrypted = Cryptor.decrypt(encrypted, password);

print(encrypted);
print(decrypted);
```