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

  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 35 import java.security.cert.Certificate;
36 import java.security.cert.CertificateException;
49 private Hashtable<String, Object> Cert = new Hashtable<String, Object>();
79 if (Cert.containsKey(alias)) {
80 return (Certificate) Cert.get(alias);
94 if (Cert.containsKey(alias)) {
95 Cert.remove(alias);
109 if (Cert.containsKey(alias)) {
110 Cert.remove(alias);
125 public void engineSetCertificateEntry(String alias, Certificate cert)
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptX509.c 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,
    [all...]
CryptPkcs7Verify.c 144 If X509Stack, Cert, or CertSize is NULL, then return FALSE.
147 @param[out] Cert Pointer to a X509 certificate.
157 OUT UINT8 **Cert,
171 if ((X509Stack == NULL) || (Cert == NULL) || (CertSize == NULL)) {
210 *Cert = Buffer;
469 X509 *Cert;
485 Cert = NULL;
532 if (!X509_STORE_CTX_init (&CertCtx, NULL, Signer, Pkcs7->d.sign->cert)) {
540 (!sk_X509_push (CertCtx.chain, CertCtx.cert))) {
549 Cert = Signer;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Pkcs7Verify/Pkcs7VerifyDxe/
Pkcs7VerifyDxe.c 265 // Un-matched Cert Hash GUID
494 UINT8 *Cert;
581 Cert = (UINT8 *)CertPtr + sizeof (UINT32);
583 if (IsCertHashRevoked (Cert, CertSize, RevokedDb, &RevocationTime)) {
    [all...]