HomeSort by relevance Sort by last modified time
    Searched defs:RsaContext (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptPkcs7Sign.c 63 UINT8 *RsaContext;
76 RsaContext = NULL;
89 (VOID **) &RsaContext
119 if (EVP_PKEY_assign_RSA (Key, (RSA *) RsaContext) == 0) {
187 if (RsaContext != NULL) {
188 RsaFree (RsaContext);
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecCryptIo.c 824 UINT8 *RsaContext;
829 RsaContext = NULL;
838 (VOID **) &RsaContext
840 if (RsaContext == NULL) {
848 if (!RsaPkcs1Sign (RsaContext, InData, InDataSize, Signature, &SigSize)) {
854 RsaPkcs1Sign (RsaContext, InData, InDataSize, Signature, &SigSize);
859 if (RsaContext != NULL) {
860 RsaFree (RsaContext);
893 UINT8 *RsaContext;
899 RsaContext = RsaNew ();
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/AuthVariableLib/
AuthService.c 749 VOID *RsaContext;
773 RsaContext = NULL;
810 RsaContext = RsaNew ();
811 if (RsaContext == NULL) {
816 if (!RsaGetPublicKeyFromX509 (CertData->SignatureData, CertLen, &RsaContext)) {
817 RsaFree (RsaContext);
820 RsaFree (RsaContext);
    [all...]

Completed in 99 milliseconds