Searched defs:BigNumber (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/CryptRuntimeDxe/
H A DCryptRuntime.c164 @param[in] BigNumber Pointer to octet integer buffer.
176 IN CONST UINT8 *BigNumber,
180 return RsaSetKey (RsaContext, KeyTag, BigNumber, BnLength);
173 RuntimeCryptRsaSetKey( IN OUT VOID *RsaContext, IN RSA_KEY_TAG KeyTag, IN CONST UINT8 *BigNumber, IN UINTN BnLength ) argument
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/
H A DRuntimeDxeIpfCryptLib.c327 @param[in] BigNumber Pointer to octet integer buffer.
339 IN CONST UINT8 *BigNumber,
347 return mCryptProtocol->RsaSetKey (RsaContext, KeyTag, BigNumber, BnLength);
336 RsaSetKey( IN OUT VOID *RsaContext, IN RSA_KEY_TAG KeyTag, IN CONST UINT8 *BigNumber, IN UINTN BnLength ) argument
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptRsa.c86 If BigNumber is NULL, then the specified key componenet in RSA context is cleared.
92 @param[in] BigNumber Pointer to octet integer buffer.
96 If BigNumber is NULL, then it is ignored.
107 IN CONST UINT8 *BigNumber,
136 if (BigNumber == NULL) {
139 RsaKey->n = BN_bin2bn (BigNumber, (UINT32) BnSize, RsaKey->n);
150 if (BigNumber == NULL) {
153 RsaKey->e = BN_bin2bn (BigNumber, (UINT32) BnSize, RsaKey->e);
164 if (BigNumber == NULL) {
167 RsaKey->d = BN_bin2bn (BigNumber, (UINT3
104 RsaSetKey( IN OUT VOID *RsaContext, IN RSA_KEY_TAG KeyTag, IN CONST UINT8 *BigNumber, IN UINTN BnSize ) argument
275 RsaGetKey( IN OUT VOID *RsaContext, IN RSA_KEY_TAG KeyTag, OUT UINT8 *BigNumber, IN OUT UINTN *BnSize ) argument
[all...]

Completed in 43 milliseconds