Home | History | Annotate | Download | only in Pk

Lines Matching refs:Cert

22   If Cert is NULL, then return FALSE.

25 @param[in] Cert Pointer to the DER-encoded certificate data.
36 IN CONST UINT8 *Cert,
47 if (Cert == NULL || SingleX509Cert == NULL || CertSize > INT_MAX) {
54 Temp = Cert;
88 UINT8 *Cert;
120 // If Cert is NULL, then it is the end of the list.
122 Cert = VA_ARG (Args, UINT8 *);
123 if (Cert == NULL) {
137 (CONST UINT8 *) Cert,
222 @param[in] Cert Pointer to the DER-encoded X509 certificate.
228 If Cert is NULL, then return FALSE.
239 IN CONST UINT8 *Cert,
253 if (Cert == NULL || SubjectSize == NULL) {
262 Status = X509ConstructCertificate (Cert, CertSize, (UINT8 **) &X509Cert);
303 @param[in] Cert Pointer to the DER-encoded X509 certificate.
309 If Cert is NULL, then return FALSE.
319 IN CONST UINT8 *Cert,
331 if (Cert == NULL || RsaContext == NULL) {
341 Status = X509ConstructCertificate (Cert, CertSize, (UINT8 **) &X509Cert);
382 @param[in] Cert Pointer to the DER-encoded X509 certificate to be verified.
387 If Cert is NULL, then return FALSE.
398 IN CONST UINT8 *Cert,
413 if (Cert == NULL || CACert == NULL) {
438 Status = X509ConstructCertificate (Cert, CertSize, (UINT8 **) &X509Cert);
508 @param[in] Cert Pointer to the given DER-encoded X509 certificate.
513 If Cert is NULL, then return FALSE.
524 IN CONST UINT8 *Cert,
538 if ((Cert == NULL) || (TBSCert == NULL) ||
560 Temp = Cert;