Last updated:
0 purchases
flutter encrypt plus
Flutter Url Launcher Plus #
Encrypt and Decrypt strings in flutter with pure Dart code.
Supported Devices #
Android
IOS
WEB
LINUX
MACOS
WINDOWS
Installation #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
flutter_encrypt_plus:
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:flutter_encrypt_plus/flutter_encrypt_plus.dart';
copied to clipboard
Example #
Encode String #
String encodedString = encrypt.encodeString("string", "salt");
copied to clipboard
Decode String #
String decodeString = encrypt.decodeString("encodedString", "salt");
copied to clipboard
Test Package #
bool result = encrypt.testPackage();
copied to clipboard
Next Goals #
❌ More features to be added
Contributions #
If you find a bug or want a feature, but don't know how to fix/implement it, please fill an issue.
If you fixed a bug or implemented a feature, please send a pull request.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.