Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Md5AuthenticationMechanism.cs
2
4{
9 {
14 {
15 }
16
22 public override byte[] H(byte[] Data)
23 {
24 return Hashes.ComputeMD5Hash(Data);
25 }
26 }
27}
Base class for all hashed authentication mechanisms.
Base class for all MD5-hashed authentication mechanisms.
Md5AuthenticationMechanism()
Base class for all MD5-hashed authentication mechanisms.
override byte[] H(byte[] Data)
Hash function
Contains methods for simple hash calculations.
Definition: Hashes.cs:59
static byte[] ComputeMD5Hash(byte[] Data)
Computes the MD5 hash of a block of binary data.
Definition: Hashes.cs:510