15 lines
531 B
Dart
15 lines
531 B
Dart
// See file LICENSE for more information.
|
|
|
|
///
|
|
/// This is the main entry point to the cipher library API.
|
|
///
|
|
/// It includes the following libraries:
|
|
/// * **api.dart** = comprises the whole API specification
|
|
/// * **impl.dart** = defines algorithm implementations and all cipherParameters to be used with them
|
|
/// * **asn1.dart** = ASN1 library to encode and decode ASN1 objects
|
|
///
|
|
library pointycastle;
|
|
|
|
export 'package:pointycastle/api.dart';
|
|
export 'package:pointycastle/impl.dart';
|
|
export 'package:pointycastle/asn1.dart';
|