Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_CSRNG.cs83drbgEngine = new CtrSP800Drbg(new AesEngine(), keySizeInBits: 256, securityStrength: 256, entropyS… in ReinstantiateInternal()
223 public uint ReseedCount => (uint)(drbgEngine?.InternalReseedCount ?? 0u);
228 if(drbgEngine == null)
232 return ByteArrayToRegisterOrderedUIntArray(drbgEngine.InternalV);
240 if(drbgEngine == null)
244 return ByteArrayToRegisterOrderedUIntArray(drbgEngine.InternalKey);
420 … if(drbgEngine.Generate(generatedBytes, additionalInput: null, predictionResistant: false) == -1) in FillFifoWithGeneratedBits()
557 if(drbgEngine == null) in EngineReseed()
562 drbgEngine.Reseed(dataAsBytes); in EngineReseed()
578 drbgEngine.Update(dataAsBytes); in EngineUpdate()
[all …]