HomeSort by relevance Sort by last modified time
    Searched refs:certfile (Results 1 - 25 of 33) sorted by null

1 2

  /external/openssl/apps/
crl2p7.c 74 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile);
91 char *infile,*outfile,*prog,*certfile; local
140 else if (strcmp(*argv,"-certfile") == 0)
171 BIO_printf(bio_err," -certfile arg certificates file of chain to a trusted CA\n");
173 BIO_printf(bio_err," -nocrl no crl to load, just certs from '-certfile'\n");
236 certfile = sk_OPENSSL_STRING_value(certflst, i);
237 if (add_certs_from_file(cert_stack,certfile) < 0)
301 static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile)
310 if ((in == NULL) || (BIO_read_filename(in,certfile) <= 0))
312 BIO_printf(bio_err,"error opening the file, %s\n",certfile);
    [all...]
CA.sh 150 $PKCS12 -in newcert.pem -inkey newreq.pem -certfile ${CATOP}/$CACERT \
smime.c 97 char *certfile = NULL, *keyfile = NULL, *contfile=NULL; local
320 else if (!strcmp (*args, "-certfile"))
324 certfile = *++args;
466 BIO_printf (bio_err, "-certfile file other certificates file\n");
568 if (certfile)
570 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
cms.c 112 char *certfile = NULL, *keyfile = NULL, *contfile=NULL; local
469 else if (!strcmp (*args, "-certfile"))
473 certfile = *++args;
627 BIO_printf (bio_err, "-certfile file other certificates file\n");
734 if (certfile)
736 if (!(other = load_certs(bio_err,certfile,FORMAT_PEM, NULL,
    [all...]
pkcs12.c 99 char *certfile=NULL; local
212 } else if (!strcmp (*args, "-certfile")) {
215 certfile = *args;
290 BIO_printf (bio_err, "-certfile f add all certs in f\n");
502 if(certfile)
505 if(!(morecerts = load_certs(bio_err, certfile, FORMAT_PEM,
507 "certificates from certfile")))
516 CRYPTO_push_info("reading certs from certfile");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 106 def __init__(self, sock, keyfile=None, certfile=None,
124 if certfile and not keyfile:
125 keyfile = certfile
139 keyfile, certfile,
145 self.certfile = certfile
312 self._sslobj = _ssl.sslwrap(self._sock, False, self.keyfile, self.certfile,
350 certfile=self.certfile,
376 def wrap_socket(sock, keyfile=None, certfile=None
    [all...]
poplib.py 320 Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None)
325 certfile - PEM formatted certificate chain file
330 def __init__(self, host, port = POP3_SSL_PORT, keyfile = None, certfile = None):
334 self.certfile = certfile
352 self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
smtplib.py 617 def starttls(self, keyfile=None, certfile=None):
624 session. If you provide the keyfile and certfile parameters,
641 self.sock = ssl.wrap_socket(self.sock, keyfile, certfile)
765 omitted, the standard SMTP-over-SSL port (465) is used. keyfile and certfile
773 keyfile=None, certfile=None,
776 self.certfile = certfile
783 new_socket = ssl.wrap_socket(new_socket, self.keyfile, self.certfile)
ftplib.py 635 certfile=None, timeout=_GLOBAL_DEFAULT_TIMEOUT):
637 self.certfile = certfile
654 self.sock = ssl.wrap_socket(self.sock, self.keyfile, self.certfile,
686 conn = ssl.wrap_socket(conn, self.keyfile, self.certfile,
    [all...]
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 106 def __init__(self, sock, keyfile=None, certfile=None,
124 if certfile and not keyfile:
125 keyfile = certfile
139 keyfile, certfile,
145 self.certfile = certfile
312 self._sslobj = _ssl.sslwrap(self._sock, False, self.keyfile, self.certfile,
350 certfile=self.certfile,
376 def wrap_socket(sock, keyfile=None, certfile=None
    [all...]
poplib.py 320 Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None)
325 certfile - PEM formatted certificate chain file
330 def __init__(self, host, port = POP3_SSL_PORT, keyfile = None, certfile = None):
334 self.certfile = certfile
352 self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
smtplib.py 617 def starttls(self, keyfile=None, certfile=None):
624 session. If you provide the keyfile and certfile parameters,
641 self.sock = ssl.wrap_socket(self.sock, keyfile, certfile)
765 omitted, the standard SMTP-over-SSL port (465) is used. keyfile and certfile
773 keyfile=None, certfile=None,
776 self.certfile = certfile
783 new_socket = ssl.wrap_socket(new_socket, self.keyfile, self.certfile)
ftplib.py 635 certfile=None, timeout=_GLOBAL_DEFAULT_TIMEOUT):
637 self.certfile = certfile
654 self.sock = ssl.wrap_socket(self.sock, self.keyfile, self.certfile,
686 conn = ssl.wrap_socket(conn, self.keyfile, self.certfile,
    [all...]
socket.py 58 def ssl(sock, keyfile=None, certfile=None):
64 return _realssl.sslwrap_simple(sock, keyfile, certfile)
imaplib.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ssl.py 26 CERTFILE = None
106 p = ssl._ssl._test_decode_cert(CERTFILE, False)
362 pem = ssl.get_server_certificate(("svn.python.org", 443), ca_certs=CERTFILE)
439 certfile=self.server.certificate,
548 certfile=self.certificate,
605 def __init__(self, conn, certfile):
608 certfile=certfile,
650 def __init__(self, certfile):
651 self.certfile = certfil
    [all...]
test_imaplib.py 21 CERTFILE = None
45 certfile=CERTFILE)
225 global CERTFILE
226 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir,
228 if not os.path.exists(CERTFILE):
test_poplib.py 228 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert.pem")
234 self.socket = ssl.wrap_socket(self.socket, certfile=CERTFILE,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ssl.py 26 CERTFILE = None
106 p = ssl._ssl._test_decode_cert(CERTFILE, False)
362 pem = ssl.get_server_certificate(("svn.python.org", 443), ca_certs=CERTFILE)
439 certfile=self.server.certificate,
548 certfile=self.certificate,
605 def __init__(self, conn, certfile):
608 certfile=certfile,
650 def __init__(self, certfile):
651 self.certfile = certfil
    [all...]
test_imaplib.py 21 CERTFILE = None
45 certfile=CERTFILE)
225 global CERTFILE
226 CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir,
228 if not os.path.exists(CERTFILE):
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/third_party/fancy_urllib/
__init__.py 149 certfile=self.cert_file,
162 certfile=self.cert_file)
  /external/chromium_org/chrome/test/chromedriver/test/
webserver.py 86 self._server.socket, certfile=server_cert_and_key_path,
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 128 openssl crl2pkcs7 -certfile /tmp/certs.pem -nocrl > ${DIR}/certs-pk7.pem
129 openssl crl2pkcs7 -certfile /tmp/certs.pem -nocrl -outform d > ${DIR}/certs-pk7.der

Completed in 542 milliseconds

1 2