Sign in
flutter
/
third_party
/
pc-dart
/
refs/heads/master
/
.
/
lib
/
src
/
api
/
algorithm.dart
blob: 19ddab8ac12adb37c5901813590acf44439a94ac [
file
] [
log
] [
blame
] [
edit
]
// See file LICENSE for more information.
part of
'../../api.dart'
;
/// All algorithms defined by Pointy Castle inherit from this class.
abstract
class
Algorithm
{
/// Get this algorithm's standard name.
String
get
algorithmName
;
}