Home
last modified time | relevance | path

Searched refs:customization (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_KMAC.cs476 …if(TryDecodePrefix(out var functionName, out var customization) && functionName.SequenceEqual(kmac… in InitHasher()
478 kmac = new KMac(HashBitLength, customization); in InitHasher()
498 if(TryDecodePrefix(out var functionName, out var customization)) in InitHasher()
500 cshake = new CShakeDigest(HashBitLength, functionName, customization); in InitHasher()
693 private bool TryDecodePrefix(out byte[] functionName, out byte[] customization) in TryDecodePrefix() argument
697 customization = default(byte[]); in TryDecodePrefix()
701 return TryLeftDecode(prefix, bytesUsed, out customization, out bytesUsed); in TryDecodePrefix()