Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EcdsaSha256.cs
1using System;
3
5{
10 {
14 public override string Oid => "1.2.840.10045.4.3.2";
15
20
25 }
26}
override string Oid
OID identifying the type of object.
Definition: EcdsaSha256.cs:14
override HashFunctionStream HashAlgorithmStream
Hash algorithm to use for streams of data.
Definition: EcdsaSha256.cs:24
override HashFunctionArray HashAlgorithm
Hash algorithm to use for in-memory blocks of data.
Definition: EcdsaSha256.cs:19
Contains methods for simple hash calculations.
Definition: Hashes.cs:57
static byte[] ComputeSHA256Hash(byte[] Data)
Computes the SHA-256 hash of a block of binary data.
Definition: Hashes.cs:469
delegate byte[] HashFunctionStream(Stream Data)
Delegate to hash function.
delegate byte[] HashFunctionArray(byte[] Data)
Delegate to hash function.