INNER CODE UNIT · Dart

SignerAlgorithm

leocavalcante/encrypt · lib/src/algorithm.dart:13

abstract class SignerAlgorithm {
  /// Sign [bytes].
  Encrypted sign(Uint8List bytes);

  /// Verify [encrypted] signature.
  bool verify(Uint8List bytes, Encrypted encrypted);
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…