Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/
DAESServiceProvider.cs51 ….TryReadBytes((long)AESRegisters.InputData, (SegmentSize * (int)segmentCount), out var inputBytes); in PerformAESOperation()
58 var result = GetResultBytesCBC(keyBytes, ivBytes, inputBytes, operation); in PerformAESOperation()
76 var inputBytes = bus.ReadBytes(inputDataAddr, SegmentSize); in PerformAESOperationDMA()
80 … bus.WriteBytes(GetResultBytesCTR(keyBytes, ivBytes, inputBytes, operation), resultDataAddr); in PerformAESOperationDMA()
83 … bus.WriteBytes(GetResultBytesCBC(keyBytes, ivBytes, inputBytes, operation), resultDataAddr); in PerformAESOperationDMA()
94 …private byte[] GetResultBytesCTR(byte[] keyBytes, byte[] ivBytes, byte[] inputBytes, Operation ope… in GetResultBytesCTR() argument
97 …DebugHelper.Assert(inputBytes.Length >= SegmentSize, "Length of input bytes should at least ${Segm… in GetResultBytesCTR()
98 …DebugHelper.Assert(inputBytes.Length % SegmentSize == 0, "Length of input bytes should be a multip… in GetResultBytesCTR()
102 segment[i] ^= inputBytes[i]; in GetResultBytesCTR()
107 …private byte[] GetResultBytesCBC(byte[] keyBytes, byte[] ivBytes, byte[] inputBytes, Operation ope… in GetResultBytesCBC() argument
[all …]
DMessageAuthenticationServiceProvider.cs109 var inputBytes = bus.ReadBytes(hashInputAddr, (int)hashInputLength); in DMAHMACSHA()
112 using(var stream = new MemoryStream(inputBytes)) in DMAHMACSHA()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Backends/Display/
DPixelManipulationTools.cs329 … var inputBytes = new ParameterExpression[inputBufferDescriptor.ColorFormat.GetColorDepth()]; in GenerateFrom()
330 for(int i = 0; i < inputBytes.Length; i++) in GenerateFrom()
332 inputBytes[i] = Expression.Variable(typeof(uint)); in GenerateFrom()
336 inputBytes[i], in GenerateFrom()
342 …nt((inputBufferDescriptor.DataEndianness == Endianess.BigEndian) ? i : inputBytes.Length - i - 1))… in GenerateFrom()
352 Expression currentExpressionFragment = inputBytes[currentByte]; in GenerateFrom()
459 return Expression.Block(inputBytes, expressions); in GenerateFrom()