blob: 9fd5d7434f08ef3db74f18bc8b6280c83674883a [file] [log] [blame] [edit]
// 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';