Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RawSHAKE256.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
12 public class RawSHAKE256 : Keccak1600
13 {
20 public RawSHAKE256(int DigestSize)
21 : base(256, 0b11, DigestSize)
22 {
23 }
24 }
25}
Implementation of the KECCAK-p permutations, with a bitsize of 1600 bits, as defined in section 3 in ...
Definition: Keccak1600.cs:13
Implements the SHA3 RawSHAKE256 extendable-output functions, as defined in section 6....
Definition: RawSHAKE256.cs:13
RawSHAKE256(int DigestSize)
Implements the SHA3 RawSHAKE256 extendable-output functions, as defined in section 6....
Definition: RawSHAKE256.cs:20