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

  /external/openssl/android.testssl/
testssl.sh 61 $x509cmd -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey -extfile $CAconf -extensions v3_ca
69 $x509cmd -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -extfile $Uconf -extensions v3_ee
  /external/openssl/patches/
testssl.sh 61 $x509cmd -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey -extfile $CAconf -extensions v3_ca
69 $x509cmd -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -extfile $Uconf -extensions v3_ee
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 27 openssl x509 -extfile ${DIR}/default.cnf -days 3650 -extensions usr_cert -req -signkey ${DIR}/privkey.pem -outform d -set_serial -99999999999999999999 < /tmp/cert-rsa-req.pem > ${DIR}/cert-rsa.der
40 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_extraLong_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-keyUsage-extraLong.der
42 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions extendedKeyUsage_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-extendedKeyUsage.der
44 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions ca_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-ca.der
46 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions userWithPathLen_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-userWithPathLen.der
48 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions caWithPathLen_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-caWithPathLen.der
50 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_other_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-other.der
52 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_email_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-email.der
54 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dns_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-dns.der
56 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dirname_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DI (…)
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-cross-signed-certs.sh 53 -extfile ca.cnf \
64 -extfile ca.cnf \
generate-bad-eku-certs.sh 51 -extfile ca.cnf \
generate-redundant-test-chains.sh 59 -extfile redundant-ca.cnf \
79 -extfile redundant-ca.cnf \
generate-policy-certs.sh 52 -extfile policy.cnf \
generate-multi-root-test-chains.sh 55 -extfile redundant-ca.cnf \
75 -extfile redundant-ca.cnf \
generate-aia-certs.sh 49 -extfile aia-test.cnf \
generate-duplicate-cn-certs.sh 47 -extfile redundant-ca.cnf \
generate-test-certs.sh 38 -extfile ca.cnf \
generate-weak-test-chains.sh 66 -extfile ca.cnf \
generate-client-certificates.sh 63 -extfile client-certs.cnf \
  /external/openssl/apps/
x509.c 145 " -extfile - configuration file with X509V3 extensions to add\n",
206 char *extsect = NULL, *extfile = NULL, *passin = NULL, *passargin = NULL; local
300 else if (strcmp(*argv,"-extfile") == 0)
303 extfile= *(++argv);
528 if (extfile)
533 if (!NCONF_load(extconf, extfile,&errorline))
538 extfile);
542 ,errorline,extfile);
    [all...]
ca.c 182 " -extfile file - Configuration file with X509v3 extentions to add\n",
283 char *extfile=NULL; local
509 else if (strcmp(*argv,"-extfile") == 0)
512 extfile= *(++argv);
992 if (extfile)
995 if (NCONF_load(extconf,extfile,&errorline) <= 0)
999 extfile);
1002 errorline,extfile);
1008 BIO_printf(bio_err, "Successfully loaded extensions file %s\n", extfile);
1091 /* no '-extfile' option, so we look for extension
    [all...]

Completed in 285 milliseconds