smart_encrypt 1.0.2
smart_encrypt: ^1.0.2 copied to clipboard
library for easy use encrypt & decrypt features, generate bytes & string
example/smart_encrypt_example.dart
import 'package:smart_encrypt/smart_encrypt.dart';
void main() {
print(SmartEncrypt.getRandomNumbers(24));
print(SmartEncrypt.getRandomString(30));
print(SmartEncrypt.createDataHash256('Hello world'));
}