HomeSort by relevance Sort by last modified time
    Searched refs:CertSize (Results 1 - 22 of 22) sorted by null

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptX509Null.c 24 @param[in] CertSize The size of certificate data in bytes.
34 IN UINTN CertSize,
108 @param[in] CertSize Size of the X509 certificate in bytes.
121 IN UINTN CertSize,
136 @param[in] CertSize Size of the X509 certificate in bytes.
148 IN UINTN CertSize,
162 @param[in] CertSize Size of the X509 certificate in bytes.
173 IN UINTN CertSize,
188 @param[in] CertSize Size of the X509 certificate in bytes.
199 IN UINTN CertSize,
    [all...]
CryptAuthenticodeNull.c 29 @param[in] CertSize Size of the trusted certificate in bytes.
44 IN UINTN CertSize,
CryptTsNull.c 29 @param[in] CertSize Size of the trusted certificate in bytes.
42 IN UINTN CertSize,
CryptX509.c 26 @param[in] CertSize The size of certificate data in bytes.
37 IN UINTN CertSize,
47 if (Cert == NULL || SingleX509Cert == NULL || CertSize > INT_MAX) {
55 X509Cert = d2i_X509 (NULL, &Temp, (long) CertSize);
89 UINTN CertSize;
127 CertSize = VA_ARG (Args, UINTN);
128 if (CertSize == 0) {
138 CertSize,
223 @param[in] CertSize Size of the X509 certificate in bytes.
240 IN UINTN CertSize,
    [all...]
CryptAuthenticode.c 52 @param[in] CertSize Size of the trusted certificate in bytes.
68 IN UINTN CertSize,
89 if ((DataSize > INT_MAX) || (CertSize > INT_MAX) || (HashSize > INT_MAX)) {
189 Status = (BOOLEAN) Pkcs7Verify (OrigAuthData, DataSize, TrustedCert, CertSize, SpcIndirectDataContent, ContentSize);
CryptPkcs7Verify.c 144 If X509Stack, Cert, or CertSize is NULL, then return FALSE.
148 @param[out] CertSize Length of output X509 certificate in bytes.
158 OUT UINTN *CertSize
171 if ((X509Stack == NULL) || (Cert == NULL) || (CertSize == NULL)) {
211 *CertSize = Length;
477 UINTN CertSize;
602 Status = X509PopCertificate (CertCtx.chain, &SingleCert, &CertSize);
609 BufferSize = OldSize + CertSize + sizeof (UINT32);
622 WriteUnaligned32 ((UINT32 *) (CertBuf + OldSize), (UINT32) CertSize);
623 CopyMem (CertBuf + OldSize + sizeof (UINT32), SingleCert, CertSize);
    [all...]
CryptTs.c 337 @param[in] CertSize Size of the trusted TSA certificate in bytes.
353 IN UINTN CertSize,
377 (TokenSize > INT_MAX) || (CertSize > INT_MAX) || (DataSize > INT_MAX)) {
414 Cert = d2i_X509 (NULL, &CertTemp, (long) CertSize);
510 @param[in] CertSize Size of the trusted certificate in bytes.
524 IN UINTN CertSize,
549 if ((DataSize > INT_MAX) || (CertSize > INT_MAX)) {
644 CertSize,
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Pk/
CryptX509Null.c 24 @param[in] CertSize The size of certificate data in bytes.
34 IN UINTN CertSize,
108 @param[in] CertSize Size of the X509 certificate in bytes.
121 IN UINTN CertSize,
136 @param[in] CertSize Size of the X509 certificate in bytes.
148 IN UINTN CertSize,
162 @param[in] CertSize Size of the X509 certificate in bytes.
173 IN UINTN CertSize,
188 @param[in] CertSize Size of the X509 certificate in bytes.
199 IN UINTN CertSize,
    [all...]
CryptAuthenticodeNull.c 29 @param[in] CertSize Size of the trusted certificate in bytes.
44 IN UINTN CertSize,
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Dxe/
MeasureBootPeCoff.c 70 UINT32 CertSize;
315 CertSize = 0;
321 CertSize = Hdr.Pe32->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
326 CertSize = Hdr.Pe32Plus->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
330 if (ImageSize > CertSize + SumOfBytesHashed) {
331 HashSize = (UINTN) (ImageSize - CertSize - SumOfBytesHashed);
337 } else if (ImageSize < CertSize + SumOfBytesHashed) {
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEDxe/
MeasureBootPeCoff.c 70 UINT32 CertSize;
315 CertSize = 0;
321 CertSize = Hdr.Pe32->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
326 CertSize = Hdr.Pe32Plus->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
330 if (ImageSize > CertSize + SumOfBytesHashed) {
331 HashSize = (UINTN) (ImageSize - CertSize - SumOfBytesHashed);
337 } else if (ImageSize < CertSize + SumOfBytesHashed) {
  /device/linaro/bootloader/edk2/CryptoPkg/Include/Library/
BaseCryptLib.h     [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeTpmMeasureBootLib/
DxeTpmMeasureBootLib.c 328 UINT32 CertSize;
620 CertSize = 0;
626 CertSize = Hdr.Pe32->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
631 CertSize = Hdr.Pe32Plus->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
635 if (ImageSize > CertSize + SumOfBytesHashed) {
636 HashSize = (UINTN) (ImageSize - CertSize - SumOfBytesHashed);
642 } else if (ImageSize < CertSize + SumOfBytesHashed) {
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Pkcs7Verify/Pkcs7VerifyDxe/
Pkcs7VerifyDxe.c 200 @param[in] CertSize Size of certificate in bytes.
213 IN UINTN CertSize,
235 if (!X509GetTBSCert (Certificate, CertSize, &TBSCert, &TBSCertSize)) {
495 UINTN CertSize;
580 CertSize = (UINTN) ReadUnaligned32 ((UINT32 *) CertPtr);
583 if (IsCertHashRevoked (Cert, CertSize, RevokedDb, &RevocationTime)) {
599 CertPtr = CertPtr + sizeof (UINT32) + CertSize;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeImageVerificationLib/
DxeImageVerificationLib.c 302 UINT32 CertSize;
571 CertSize = 0;
577 CertSize = mNtHeader.Pe32->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
582 CertSize = mNtHeader.Pe32Plus->OptionalHeader.DataDirectory[EFI_IMAGE_DIRECTORY_ENTRY_SECURITY].Size;
586 if (mImageSize > CertSize + SumOfBytesHashed) {
587 HashSize = (UINTN) (mImageSize - CertSize - SumOfBytesHashed);
593 } else if (mImageSize < CertSize + SumOfBytesHashed) {
886 @param[in] CertSize Size of X.509 Certificate.
898 IN UINTN CertSize,
932 if (!X509GetTBSCert (Certificate, CertSize, &TBSCert, &TBSCertSize)) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
davclnt.h 79 DWORD CertSize
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecCryptIo.c 989 @param[in] CertSize The size of the X509 certificate in bytes.
1000 IN UINTN CertSize,
1010 X509GetSubjectName (InCert, CertSize, *CertSubject, SubjectSize);
1013 if (!X509GetSubjectName (InCert, CertSize, *CertSubject, SubjectSize)) {
IpSecCryptIo.h 810 @param[in] CertSize The size of the X509 certificate in bytes.
821 IN UINTN CertSize,
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Utility.h 483 @param[in] CertSize Size of the Certificate.
493 IN UINTN CertSize
    [all...]
Payload.c 272 @param[in] CertSize Size of the Certificate.
282 IN UINTN CertSize
309 CertSize,
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/AuthVariableLib/
AuthService.c     [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigImpl.c     [all...]

Completed in 993 milliseconds