crypto_simple 1.0.0 copy "crypto_simple: ^1.0.0" to clipboard
crypto_simple: ^1.0.0 copied to clipboard

outdated

A Simple Cryptography Package For Flutter .

crypto_simple #

A Simple Cryptography Package For Flutter .

Get started #

Add dependency #

dependencies:
  crypto_simple: ^1.0.0

Add import #

import 'package:crypto_simple/crypto_simple.dart';

Super simple to use #

Initialize Package ..

import 'package:crypto_simple/crypto_simple.dart';
void main () {
  CryptoSimple(superKey: 2022); ///this part is mandatory
  runApp(MyApp());
}

Using ..

    String? _token = 'bearer 5@1#fG!';
    String? _encodeResult =
      CryptoSimple.instance.encrypt(inputText: _token!); /// easy encrypt !
    String? _decodeResult =
      CryptoSimple.instance.decrypt(encryptedText: _encodeResult!);/// easy decrypt !
9
likes
0
pub points
70%
popularity

Publisher

verified publisherea2.dev

A Simple Cryptography Package For Flutter .

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on crypto_simple