blob: 8adc373db223b5580f677a6e2c188b6ba4227e6c [file] [log] [blame]
// See file LICENSE for more information.
part of api;
/// All algorithms defined by Pointy Castle inherit from this class.
abstract class Algorithm {
/// Get this algorithm's standard name.
String get algorithmName;
}