Searched refs:revoked (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_x509crl.rb72 revoked = crl.revoked
73 assert_equal(5, revoked.size)
74 assert_equal(1, revoked[0].serial)
75 assert_equal(2, revoked[1].serial)
76 assert_equal(3, revoked[2].serial)
77 assert_equal(4, revoked[3].serial)
78 assert_equal(5, revoked[4].serial)
80 assert_equal(Time.at(0), revoked[0].time)
81 assert_equal(Time.at(0x7fffffff), revoked[
[all...]
H A Dutils.rb153 revoked = OpenSSL::X509::Revoked.new
154 revoked.serial = rserial
155 revoked.time = time
158 revoked.add_extension(ext)
159 crl.add_revoked(revoked)
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Dx_crl.c75 * reordering of the revoked field.
81 if(!a || !a->revoked) return 1;
87 (void)sk_X509_REVOKED_set_cmp_func(a->revoked,X509_REVOKED_cmp);
100 ASN1_SEQUENCE_OF_OPT(X509_CRL_INFO, revoked, X509_REVOKED),
127 if(!inf->revoked)
128 inf->revoked = sk_X509_REVOKED_new(X509_REVOKED_cmp);
129 if(!inf->revoked || !sk_X509_REVOKED_push(inf->revoked, rev)) {
/macosx-10.10/OpenSSH-189/openssh/regress/
H A Dkrl.sh15 rm -f $OBJ/revoked-* $OBJ/krl-*
18 $SSHKEYGEN -t $ECDSA -f $OBJ/revoked-ca -C "" -N "" > /dev/null ||
24 cat << EOF >> $OBJ/revoked-serials
47 touch $OBJ/revoked-keyid
50 echo "id: revoked $n" >> $OBJ/revoked-keyid
55 f=$OBJ/revoked-`printf "%04d" $N`
65 $SSHKEYGEN -s $OBJ/revoked-ca -z $n -I "revoked $N" $f >/dev/null 2>&1 \
95 $SSHKEYGEN $OPTS -kf $OBJ/krl-ca $OBJ/revoked
[all...]
H A DMakefile89 sshd_proxy.* authorized_keys_${USER}.* modpipe revoked-* krl-*
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/libDER/Tests/
H A DparseCrl.c40 DERRevokedCert revoked; local
59 printf("revoked cert %u\n", certNum);
63 &revoked, sizeof(revoked));
69 printItem("serialNum", IT_Leaf, verbose, ASN1_INTEGER, &revoked.serialNum);
70 decodePrintItem("revocationDate", IT_Leaf, verbose, &revoked.revocationDate);
71 printItem("extensions", IT_Branch, verbose, ASN1_CONSTR_SEQUENCE, &revoked.extensions);
/macosx-10.10/OpenSSL098-52/src/crypto/x509/
H A Dx509cset.c126 sk_X509_REVOKED_sort(c->crl->revoked);
127 for (i=0; i<sk_X509_REVOKED_num(c->crl->revoked); i++)
129 r=sk_X509_REVOKED_value(c->crl->revoked,i);
H A Dx509_vfy.c813 /* Sort revoked into serial number order if not already sorted.
816 if (!sk_X509_REVOKED_is_sorted(crl->crl->revoked))
819 sk_X509_REVOKED_sort(crl->crl->revoked);
822 idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp);
823 /* If found assume revoked: want something cleverer than
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dopenssl_missing.c167 sk_X509_REVOKED_sort(c->crl->revoked);
168 for (i=0; i<sk_X509_REVOKED_num(c->crl->revoked); i++) {
169 r=sk_X509_REVOKED_value(c->crl->revoked, i);
191 if (!inf->revoked)
192 inf->revoked = sk_X509_REVOKED_new(OSSL_X509_REVOKED_cmp);
193 if (!inf->revoked || !sk_X509_REVOKED_push(inf->revoked, rev))
H A Dossl_x509crl.c264 VALUE ary, revoked; local
276 revoked = ossl_x509revoked_new(rev);
277 rb_ary_push(ary, revoked);
296 sk_X509_REVOKED_pop_free(crl->crl->revoked, X509_REVOKED_free);
297 crl->crl->revoked = NULL;
310 ossl_x509crl_add_revoked(VALUE self, VALUE revoked) argument
316 rev = DupX509RevokedPtr(revoked);
322 return revoked;
524 rb_define_method(cX509CRL, "revoked", ossl_x509crl_get_revoked, 0);
525 rb_define_method(cX509CRL, "revoked
[all...]
/macosx-10.10/ruby-106/ruby/sample/openssl/
H A Dcertstore.rb85 if crl.revoked.find { |revoked| revoked.serial == cert.serial }
87 error_string = 'certification revoked'
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DTPCrlInfo.cpp295 CSSM_X509_REVOKED_CERT_LIST_PTR revoked = local
297 if(revoked != NULL) {
298 for(uint32 dex=0; dex<revoked->numberOfRevokedCertEntries; dex++) {
303 revoked->revokedCertEntry[dex].extensions,
473 * Determine if specified cert has been revoked as of the
566 * For now, just flag it revoked.
/macosx-10.10/Security-57031.1.35/certificates/ota_cert_tool/Scripts/
H A DFile.rb101 file_list = %w(EVRoots.plist certs.plist revoked.plist Manifest.plist distrusted.plist roots.plist)
/macosx-10.10/OpenSSL098-52/src/demos/asn1/
H A Docsp.c141 revoked [1] IMPLICIT RevokedInfo,
250 RevokedInfo *revoked; member in union:__anon3365::__anon3366
340 ASN1_IMP(CertStatus, d.revoked, RevokedInfo, 1),
/macosx-10.10/security_certificates-55040/
H A DbuildRootKeychain9 set REVOKED_CERT_DIR=$CWD/revoked
/macosx-10.10/OpenSSL098-52/src/crypto/ocsp/
H A Docsp_asn.c134 ASN1_IMP(OCSP_CERTSTATUS, value.revoked, OCSP_REVOKEDINFO, 1),
H A Docsp_cl.c255 * certificate status is revoked. Returns numerical value of
271 OCSP_REVOKEDINFO *rev = cst->value.revoked;
H A Docsp_prn.c116 { V_OCSP_CERTSTATUS_REVOKED, "revoked" },
243 rev = cst->value.revoked;
H A Docsp_srv.c163 if (!(cs->value.revoked = ri = OCSP_REVOKEDINFO_new())) goto err;
H A Docsp.h229 * revoked [1] IMPLICIT RevokedInfo,
240 OCSP_REVOKEDINFO *revoked; member in union:ocsp_cert_status_st::__anon3319
/macosx-10.10/OpenSSH-189/openssh/
H A Dauth.c404 error("WARNING: revoked key for %s attempted authentication",
636 /* Returns 1 if key is revoked by revoked_keys_file, 0 otherwise */
646 return 0; /* Not revoked */
650 goto revoked;
656 /* key not revoked */
664 revoked:
665 /* Key revoked */
667 error("WARNING: authentication attempt with a revoked "
H A Dkrl.c50 * Trees of revoked serial numbers, key IDs and keys. This allows
82 /* Tracks revoked certs for a single CA */
433 * current section type, the run length of contiguous revoked serial
434 * numbers and the gaps from the last and to the next revoked serial.
537 /* Store the revoked serials. */
682 /* Store sections for revoked certificates */
1049 /* Check that the key(s) used to sign the KRL weren't revoked */
1060 error("All keys used to sign KRL were revoked");
1100 /* Checks whether a given key/cert is revoked. Does not check its CA */
1109 /* Check explicitly revoked hashe
1194 int revoked, fd; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Drevoke.c746 "Certificate revoked by issuer in OCSP");
837 "Certificate revoked by issuer in CRL");
1139 status = "revoked";
1281 hx509_certs revoked; member in struct:hx509_crl
1307 ret = hx509_certs_init(context, "MEMORY:crl", 0, NULL, &(*crl)->revoked);
1318 * Add revoked certificate to an CRL context.
1321 * @param crl the CRL to add the revoked certificate to.
1334 return hx509_certs_merge(context, crl->revoked, certs);
1371 hx509_certs_free(&(*crl)->revoked);
1496 ret = hx509_certs_iter_f(context, crl->revoked, add_revoke
[all...]
H A Dhxtool.c2182 hx509_certs revoked = NULL; local
2185 ret = hx509_certs_init(hxcontext, "MEMORY:revoked-certs", 0,
2186 NULL, &revoked);
2192 ret = hx509_certs_append(hxcontext, revoked, lock, argv[i]);
2197 hx509_crl_add_revoked_certs(hxcontext, crl, revoked);
2198 hx509_certs_free(&revoked);
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Docsp.h229 * revoked [1] IMPLICIT RevokedInfo,
240 OCSP_REVOKEDINFO *revoked; member in union:ocsp_cert_status_st::__anon3405

Completed in 505 milliseconds

12