2using System.Collections.Generic;
33 bool Verify(
byte[] Data,
byte[] PublicKey,
byte[] Signature);
42 bool Verify(Stream Data,
byte[] PublicKey,
byte[] Signature);
Interface for digital signature algorithms.
byte[] Sign(byte[] Data)
Creates a signature of Data .
bool Verify(Stream Data, byte[] PublicKey, byte[] Signature)
Verifies a signature of Data .
byte[] Sign(Stream Data)
Creates a signature of Data .
bool Verify(byte[] Data, byte[] PublicKey, byte[] Signature)
Verifies a signature of Data .