Exemplo n.º 1
0
 /// <summary>
 /// Signs the provided Hash code with the private key and returns the hash signature
 /// </summary>
 public bool VerifyHash(byte[] signature, Hash hashBytes)
 {
     return(RSAKey.VerifyHash(hashBytes.ToArray(), hashBytes.AlgorithmOID, signature));
 }