dart_ase 1.1.2
dart_ase: ^1.1.2 copied to clipboard
A Dart package for quantum-secure encryption functionalities.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add dart_aseWith Flutter:
$ flutter pub add dart_aseThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
dart_ase: ^1.1.2Alternatively, 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:dart_ase/ase.dart';
import 'package:dart_ase/constants.dart';
import 'package:dart_ase/hybrid/hybrid_pke.dart';
import 'package:dart_ase/io/deserialize.dart';
import 'package:dart_ase/io/path.dart';
import 'package:dart_ase/io/serialize.dart';
import 'package:dart_ase/kem/kem.dart';
import 'package:dart_ase/kem/keypair.dart';
import 'package:dart_ase/poly/polynominal.dart';
import 'package:dart_ase/poly/polyvec.dart';
import 'package:dart_ase/utils/entropy.dart';
import 'package:dart_ase/utils/hkdf_aes.dart';
import 'package:dart_ase/utils/secure_wipe.dart';