Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RawSHAKE128.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
12 public class RawSHAKE128 : Keccak1600
13 {
20 public RawSHAKE128(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 RawSHAKE128 extendable-output functions, as defined in section 6....
Definition: RawSHAKE128.cs:13
RawSHAKE128(int DigestSize)
Implements the SHA3 RawSHAKE128 extendable-output functions, as defined in section 6....
Definition: RawSHAKE128.cs:20