Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Cipher/
DCryptAes.c116 IN UINTN InputSize, in AesEcbEncrypt() argument
125 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) { in AesEcbEncrypt()
134 while (InputSize > 0) { in AesEcbEncrypt()
138 InputSize -= AES_BLOCK_SIZE; in AesEcbEncrypt()
173 IN UINTN InputSize, in AesEcbDecrypt() argument
182 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) { in AesEcbDecrypt()
191 while (InputSize > 0) { in AesEcbDecrypt()
195 InputSize -= AES_BLOCK_SIZE; in AesEcbDecrypt()
233 IN UINTN InputSize, in AesCbcEncrypt() argument
244 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0) { in AesCbcEncrypt()
[all …]
DCryptTdes.c142 IN UINTN InputSize, in TdesEcbEncrypt() argument
151 …if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) { in TdesEcbEncrypt()
157 while (InputSize > 0) { in TdesEcbEncrypt()
168 InputSize -= TDES_BLOCK_SIZE; in TdesEcbEncrypt()
203 IN UINTN InputSize, in TdesEcbDecrypt() argument
212 …if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) { in TdesEcbDecrypt()
218 while (InputSize > 0) { in TdesEcbDecrypt()
229 InputSize -= TDES_BLOCK_SIZE; in TdesEcbDecrypt()
267 IN UINTN InputSize, in TdesCbcEncrypt() argument
278 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0) { in TdesCbcEncrypt()
[all …]
DCryptArc4.c109 IN UINTN InputSize, in Arc4Encrypt() argument
118 if (Arc4Context == NULL || Input == NULL || Output == NULL || InputSize > INT_MAX) { in Arc4Encrypt()
124 RC4 (Rc4Key, (UINT32) InputSize, Input, Output); in Arc4Encrypt()
155 IN UINTN InputSize, in Arc4Decrypt() argument
164 if (Arc4Context == NULL || Input == NULL || Output == NULL || InputSize > INT_MAX) { in Arc4Decrypt()
170 RC4 (Rc4Key, (UINT32) InputSize, Input, Output); in Arc4Decrypt()
DCryptTdesNull.c77 IN UINTN InputSize, in TdesEcbEncrypt() argument
103 IN UINTN InputSize, in TdesEcbDecrypt() argument
130 IN UINTN InputSize, in TdesCbcEncrypt() argument
158 IN UINTN InputSize, in TdesCbcDecrypt() argument
DCryptAesNull.c77 IN UINTN InputSize, in AesEcbEncrypt() argument
103 IN UINTN InputSize, in AesEcbDecrypt() argument
130 IN UINTN InputSize, in AesCbcEncrypt() argument
158 IN UINTN InputSize, in AesCbcDecrypt() argument
DCryptArc4Null.c78 IN UINTN InputSize, in Arc4Encrypt() argument
104 IN UINTN InputSize, in Arc4Decrypt() argument
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Cipher/
DCryptAesNull.c77 IN UINTN InputSize, in AesEcbEncrypt() argument
103 IN UINTN InputSize, in AesEcbDecrypt() argument
130 IN UINTN InputSize, in AesCbcEncrypt() argument
158 IN UINTN InputSize, in AesCbcDecrypt() argument
DCryptTdesNull.c77 IN UINTN InputSize, in TdesEcbEncrypt() argument
103 IN UINTN InputSize, in TdesEcbDecrypt() argument
130 IN UINTN InputSize, in TdesCbcEncrypt() argument
158 IN UINTN InputSize, in TdesCbcDecrypt() argument
DCryptArc4Null.c78 IN UINTN InputSize, in Arc4Encrypt() argument
104 IN UINTN InputSize, in Arc4Decrypt() argument
/device/linaro/bootloader/edk2/CryptoPkg/Include/Library/
DBaseCryptLib.h1335 IN UINTN InputSize,
1370 IN UINTN InputSize,
1408 IN UINTN InputSize,
1447 IN UINTN InputSize,
1528 IN UINTN InputSize,
1563 IN UINTN InputSize,
1601 IN UINTN InputSize,
1640 IN UINTN InputSize,
1717 IN UINTN InputSize,
1749 IN UINTN InputSize,
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
DIpSecCryptIo.h186 IN UINTN InputSize,
213 IN UINTN InputSize,
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DBlockIoCrypto.h69 UINT64 InputSize; member