Searched refs:Nonce (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIkeCommon.c50 Generate the random data for Nonce payload.
62 UINT8 *Nonce; local
65 Nonce = AllocateZeroPool (NonceSize);
66 if (Nonce == NULL) {
70 Status = IpSecCryptoIoGenerateRandomBytes (Nonce, NonceSize);
72 FreePool (Nonce);
75 return Nonce;
/vbox/src/VBox/Runtime/common/crypto/
H A Dtsp-template.h91 RTASN1TMPL_MEMBER_OPT_ITAG_UP( Nonce, RTASN1INTEGER, RTAsn1Integer, ASN1_TAG_INTEGER);
/vbox/include/iprt/crypto/
H A Dtsp.h105 /** Nonce, optional. */
106 RTASN1INTEGER Nonce; member in struct:RTCRTSPTSTINFO
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/Ikev2/
H A DPayload.c83 Generate a Nonce payload containing the input parameter NonceBuf.
85 @param[in] NonceBuf The nonce buffer contains the whole Nonce payload block
89 of Nonce Payload header.
91 @retval Pointer to Nonce IKE paload.
102 IKEV2_NONCE *Nonce; local
112 // ~ Nonce Data ~
119 Nonce = AllocateZeroPool (Size);
120 ASSERT (Nonce != NULL);
121 CopyMem (Nonce + 1, NonceBlock, Size - sizeof (IKEV2_NONCE));
123 Nonce
[all...]

Completed in 142 milliseconds