Sign in
flutter
/
third_party
/
pc-dart
/
2923de3d5f706fc8b59da25d6ad66eaecac4afe2
/
.
/
lib
/
src
/
api
/
algorithm.dart
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
;
}