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
- Host: GitHub
- URL: https://github.com/alchaplinsky/cryptor
- Owner: alchaplinsky
- License: mit
- Created: 2020-05-16T21:03:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-08T21:30:36.000Z (about 6 years ago)
- Last Synced: 2025-04-17T18:23:41.762Z (about 1 year ago)
- Language: Dart
- Homepage:
- Size: 23.4 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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);
```