Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Sha384.cs
3
5{
9 public class Sha384 : HashFunction
10 {
14 public override string Oid => "2.16.840.1.101.3.4.2.2";
15
21 public override byte[] ComputeHash(byte[] Data) => Hashes.ComputeSHA384Hash(Data);
22
26 public override HashAlgorithmName Name => HashAlgorithmName.SHA384;
27
31 public override int HashLength => 48;
32 }
33}
override HashAlgorithmName Name
Hash Algorithm Name
Definition: Sha384.cs:26
override byte[] ComputeHash(byte[] Data)
Computes a Hash Digest from binary data.
override int HashLength
Number of bytes used for the hash digest.
Definition: Sha384.cs:31
Contains methods for simple hash calculations.
Definition: Hashes.cs:57
static byte[] ComputeSHA384Hash(byte[] Data)
Computes the SHA-384 hash of a block of binary data.
Definition: Hashes.cs:523