thunder_encryption 1.0.0
thunder_encryption: ^1.0.0 copied to clipboard
A library for encryption utilities in Dart.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add thunder_encryption
With Flutter:
$ flutter pub add thunder_encryption
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
thunder_encryption: ^1.0.0
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:thunder_encryption/core/model/key_model.dart';
import 'package:thunder_encryption/core/model/letters_key_model.dart';
import 'package:thunder_encryption/core/strings/letters/ar_letters.dart';
import 'package:thunder_encryption/core/strings/letters/en_letters.dart';
import 'package:thunder_encryption/core/strings/letters/numbers.dart';
import 'package:thunder_encryption/core/strings/letters/symbol.dart';
import 'package:thunder_encryption/core/strings/letters_init.dart';
import 'package:thunder_encryption/encryption.dart';
import 'package:thunder_encryption/feature/key_generation/extract_key.dart';
import 'package:thunder_encryption/feature/key_generation/generate_key.dart';
import 'package:thunder_encryption/feature/text_encryption_decryption/text_decryption.dart';
import 'package:thunder_encryption/feature/text_encryption_decryption/text_encryption.dart';
import 'package:thunder_encryption/main.dart';