Expose API

This commit is contained in:
Hugo Pointcheval 2020-12-19 17:24:55 +01:00
parent a5e42970ce
commit 43de719ea6

18
lib/native_crypto.dart Normal file
View File

@ -0,0 +1,18 @@
// Copyright (c) 2020
// Author: Hugo Pointcheval
export './src/exceptions.dart';
export './src/key.dart';
export './src/keyspec.dart';
export './src/keyderivation.dart';
export './src/digest.dart';
export './src/cipher.dart';
//export './src/kem.dart';
export './src/platform.dart';
export './src/utils.dart';
export './src/sym/AES.dart';
//export './src/asym/RSA.dart';
const String version = "0.0.5";
const String author = "Hugo Pointcheval";
const String website = "https://hugo.pointcheval.fr/";