Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EcdsaSha224.cs
1using System;
3
5{
10 {
14 public override string Oid => "1.2.840.10045.4.3.1";
15
19 public override HashFunctionArray HashAlgorithm =>
20 throw new NotImplementedException("SHA-224 not implemented."); // TODO
21
26 throw new NotImplementedException("SHA-224 not implemented."); // TODO
27 }
28}
override HashFunctionStream HashAlgorithmStream
Hash algorithm to use for streams of data.
Definition: EcdsaSha224.cs:25
override HashFunctionArray HashAlgorithm
Hash algorithm to use for in-memory blocks of data.
Definition: EcdsaSha224.cs:19
override string Oid
OID identifying the type of object.
Definition: EcdsaSha224.cs:14
delegate byte[] HashFunctionStream(Stream Data)
Delegate to hash function.
delegate byte[] HashFunctionArray(byte[] Data)
Delegate to hash function.