Searched refs:KeySize (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Application/Cryptest/
H A DRsaVerify.c102 UINTN KeySize; local
131 KeySize = 0;
132 Status = RsaGetKey (Rsa, RsaKeyN, NULL, &KeySize);
133 if (Status || KeySize != sizeof (RsaN)) {
138 KeyBuffer = AllocatePool (KeySize);
139 Status = RsaGetKey (Rsa, RsaKeyN, KeyBuffer, &KeySize);
140 if (!Status || KeySize != sizeof (RsaN)) {
145 if (CompareMem (KeyBuffer, RsaN, KeySize) != 0) {
161 KeySize = 0;
162 Status = RsaGetKey (Rsa, RsaKeyE, NULL, &KeySize);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Cipher/
H A DCryptArc4.c47 If KeySize does not in the range of [5, 256] bytes, then return FALSE.
51 @param[in] KeySize Size of ARC4 key in bytes.
62 IN UINTN KeySize
70 if (Arc4Context == NULL || Key == NULL || (KeySize < 5 || KeySize > 256)) {
76 RC4_set_key (Rc4Key, (UINT32) KeySize, Key);
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptDh.c229 If KeySize is NULL, then return FALSE.
230 If KeySize is large enough but Key is NULL, then return FALSE.
236 @param[in, out] KeySize On input, the size of Key buffer in bytes.
241 @retval FALSE KeySize is not large enough.
251 IN OUT UINTN *KeySize
259 if (DhContext == NULL || PeerPublicKey == NULL || KeySize == NULL) {
263 if (Key == NULL && *KeySize != 0) {
269 *KeySize = (BOOLEAN) DH_compute_key (Key, Bn, DhContext);
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Hmac/
H A DCryptHmacMd5.c44 @param[in] KeySize Key size in bytes.
55 IN UINTN KeySize
69 HMAC_Init_ex (HmacMd5Context, Key, (UINT32) KeySize, EVP_md5(), NULL);
H A DCryptHmacSha1.c44 @param[in] KeySize Key size in bytes.
55 IN UINTN KeySize
69 HMAC_Init_ex (HmacSha1Context, Key, (UINT32) KeySize, EVP_sha1(), NULL);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Protocol/
H A DFirmwareVolume.h336 UINT32 KeySize; member in struct:_EFI_FIRMWARE_VOLUME_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecCryptIo.h69 @param[in] KeySize The length of the Key in bytes.
79 IN UINTN KeySize
683 @param[in, out] KeySize For in, the size of Key buffer in bytes.
697 IN OUT UINTN *KeySize
H A DIpSecCryptIo.c724 @param[in, out] KeySize For in, the size of Key buffer in bytes.
738 IN OUT UINTN *KeySize
741 if (!DhComputeKey (DhContext, PeerPublicKey, PeerPublicKeySize, Key, KeySize)) {
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/Library/
H A DBaseCryptLib.h506 @param[in] KeySize Key size in bytes.
517 IN UINTN KeySize
613 @param[in] KeySize Key size in bytes.
624 IN UINTN KeySize
1089 If KeySize does not in the range of [5, 256] bytes, then return FALSE.
1093 @param[in] KeySize Size of ARC4 key in bytes.
1104 IN UINTN KeySize
1852 If KeySize is NULL, then return FALSE.
1853 If KeySize is large enough but Key is NULL, then return FALSE.
1859 @param[in, out] KeySize O
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DFirmwareVolume2.h556 at least This->KeySize bytes long. To re-initialize the search and begin from the
749 UINT32 KeySize; member in struct:_EFI_FIRMWARE_VOLUME2_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
H A DFwVol.c612 FvDevice->Fv.KeySize = KEYSIZE;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dsspi.h498 ULONG KeySize; member in struct:_SecPkgContext_KeyInfoA
507 ULONG KeySize; member in struct:_SecPkgContext_KeyInfoW
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dsspi.h493 ULONG KeySize; member in struct:_SecPkgContext_KeyInfoA
502 ULONG KeySize; member in struct:_SecPkgContext_KeyInfoW
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/Ikev2/
H A DPayload.c375 UINTN KeySize; local
434 KeySize = DigestSize;
499 KeySize,
618 UINTN KeySize; local
666 KeySize = DigestSize;

Completed in 104 milliseconds