Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RsaSha224.cs
1using System;
3
5{
9 public class RsaSha224 : RsaAlgorithm
10 {
14 public override string Oid => "1.2.840.113549.1.1.14";
15
16
20 public override HashFunctionArray HashAlgorithm =>
21 throw new NotImplementedException("SHA-224 not implemented."); // TODO
22
26 public override string HashAlgorithmOid =>
27 throw new NotImplementedException("SHA-224 not implemented."); // TODO
28 }
29}
override string Oid
OID identifying the type of object.
Definition: RsaSha224.cs:14
override HashFunctionArray HashAlgorithm
Hash algorithm to use.
Definition: RsaSha224.cs:20
override string HashAlgorithmOid
OID of Hash algorithm to use.
Definition: RsaSha224.cs:26
delegate byte[] HashFunctionArray(byte[] Data)
Delegate to hash function.