Home | History | Annotate | Download | only in Pk

Lines Matching defs:CertSize

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);
646 Status = X509PopCertificate (CertCtx.untrusted, &SingleCert, &CertSize);
653 BufferSize = OldSize + CertSize + sizeof (UINT32);
666 WriteUnaligned32 ((UINT32 *) (CertBuf + OldSize), (UINT32) CertSize);
667 CopyMem (CertBuf + OldSize + sizeof (UINT32), SingleCert, CertSize);