Searched refs:KeySize (Results 1 – 5 of 5) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | NRF52840_ECB.cs | 78 …on process; key at 0x{0:X}, cleartext at 0x{1:X}", dataPointer.Value, dataPointer.Value + KeySize); in RunEncryption() 80 var key = sysbus.ReadBytes(dataPointer.Value, KeySize); in RunEncryption() 81 var clearText = sysbus.ReadBytes(dataPointer.Value + KeySize, ClearTextSize); in RunEncryption() 89 sysbus.WriteBytes(clearText, dataPointer.Value + KeySize + ClearTextSize); in RunEncryption() 105 private const int KeySize = 16; field in Antmicro.Renode.Peripherals.Miscellaneous.NRF52840_ECB
|
| D | OpenTitan_AES.cs | 234 aes.KeySize = 128; in ConfigureAES() 237 aes.KeySize = 192; in ConfigureAES() 240 aes.KeySize = 256; in ConfigureAES()
|
| D | CC2538_Cryptoprocessor.cs | 617 case KeySize.Bits128: in GetSelectedKey() 619 case KeySize.Bits192: in GetSelectedKey() 623 case KeySize.Bits256: in GetSelectedKey() 661 private readonly IEnumRegisterField<KeySize> keySize; 705 private enum KeySize enum in Antmicro.Renode.Peripherals.Miscellaneous.CC2538_Cryptoprocessor
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/ |
| D | STM32H7_CRYPTO.cs | 304 private IEnumRegisterField<KeySize> keySize; 317 private readonly Dictionary<KeySize, int> keySizeToAesSkip = new Dictionary<KeySize, int>() 319 {KeySize.Bit256, 0}, 320 {KeySize.Bit192, 2}, 321 {KeySize.Bit128, 4}, 557 private enum KeySize enum in Antmicro.Renode.Peripherals.Miscellaneous.Crypto.STM32H7_CRYPTO
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/ |
| D | EmberRadio.cs | 366 aes.KeySize = 128; in Encrypt()
|