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

1 2

  /external/chromium_org/third_party/tlslite/tlslite/integration/
clienthelper.py 20 certChain=None, privateKey=None,
28 - certChain, privateKey (certificate)
55 @type certChain: L{tlslite.x509certchain.X509CertChain}
56 @param certChain: Certificate chain for client authentication.
61 Requires the 'certChain' argument. Excludes the SRP arguments.
75 self.certChain = None
82 (certChain or privateKey):
87 elif certChain and privateKey and not \
89 self.certChain = certChain
    [all...]
smtp_tls.py 15 certChain=None, privateKey=None,
26 - certChain, privateKey (certificate)
50 @type certChain: L{tlslite.x509certchain.X509CertChain}
51 @param certChain: Certificate chain for client authentication.
56 Requires the 'certChain' argument. Excludes the SRP arguments.
71 certChain, privateKey,
xmlrpctransport.py 33 certChain=None, privateKey=None,
51 - certChain, privateKey (certificate)
79 @type certChain: L{tlslite.x509certchain.X509CertChain}
80 @param certChain: Certificate chain for client authentication.
85 Requires the 'certChain' argument. Excludes the SRP arguments.
108 certChain, privateKey,
123 certChain=self.certChain, privateKey=self.privateKey,
httptlsconnection.py 28 certChain=None, privateKey=None,
38 - certChain, privateKey (certificate)
73 @type certChain: L{tlslite.x509certchain.X509CertChain} or
74 @param certChain: Certificate chain for client authentication.
79 Requires the 'certChain' argument. Excludes the SRP arguments.
103 certChain, privateKey,
imap4_tls.py 19 certChain=None, privateKey=None,
27 - certChain, privateKey (certificate)
57 @type certChain: L{tlslite.x509certchain.X509CertChain}
58 @param certChain: Certificate chain for client authentication.
63 Requires the 'certChain' argument. Excludes the SRP arguments.
77 certChain, privateKey,
pop3_tls.py 17 certChain=None, privateKey=None,
25 - certChain, privateKey (certificate)
54 @type certChain: L{tlslite.x509certchain.X509CertChain}
55 @param certChain: Certificate chain for client authentication.
60 Requires the 'certChain' argument. Excludes the SRP argument.
76 certChain, privateKey,
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
ClientCertLookupTable.java 27 public Cert(AndroidPrivateKey privateKey, byte[][] certChain) {
29 byte[][] newChain = new byte[certChain.length][];
30 for (int i = 0; i < certChain.length; i++) {
31 newChain[i] = Arrays.copyOf(certChain[i], certChain[i].length);
AwContentsClientBridge.java 149 private void provideResponse(AndroidPrivateKey androidKey, byte[][] certChain) {
152 certChain, androidKey);
280 int id, byte[][] certChain, AndroidPrivateKey androidKey);
  /external/chromium_org/third_party/tlslite/scripts/
tls.py 95 certChain = None
111 certChain = X509CertChain([x509])
146 retList.append(certChain)
188 (address, privateKey, certChain, username, password) = \
191 if (certChain and not privateKey) or (not certChain and privateKey):
195 if certChain and username:
213 connection.handshakeClientCert(certChain, privateKey,
244 (address, privateKey, certChain, tacks,
248 if (certChain and not privateKey) or (not certChain and privateKey)
    [all...]
  /frameworks/base/core/java/android/net/http/
CertificateChainValidator.java 142 * @param certChain The bytes for certificates in ASN.1 DER encoded certificates format.
148 byte[][] certChain, String domain, String authType)
151 if (certChain == null || certChain.length == 0) {
155 X509Certificate[] serverCertificates = new X509Certificate[certChain.length];
159 for (int i = 0; i < certChain.length; ++i) {
161 new ByteArrayInputStream(certChain[i]));
  /external/chromium_org/third_party/tlslite/tests/
tlstest.py 473 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key)
483 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key, settings=settings)
492 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key, settings=settings)
505 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key,
513 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key,
545 certChain=x509Chain, privateKey=x509Key)
555 certChain=x509Chain, privateKey=x509Key)
566 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key)
574 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key, reqCert=True)
584 connection.handshakeServer(certChain=x509Chain, privateKey=x509Key, reqCert=True, settings=settings
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/
tlsconnection.py 310 def handshakeClientCert(self, certChain=None, privateKey=None,
336 @type certChain: L{tlslite.x509certchain.X509CertChain}
337 @param certChain: The certificate chain to be used if the
389 handshaker = self._handshakeClientAsync(certParams=(certChain,
452 raise ValueError("Caller passed a certChain but no privateKey")
454 raise ValueError("Caller passed a privateKey but no certChain")
    [all...]
messages.py 376 self.certChain = None
378 def create(self, certChain):
379 self.certChain = certChain
395 self.certChain = X509CertChain(certificate_list)
406 if self.certChain:
407 certificate_list = self.certChain.x509List
  /external/chromium_org/net/android/java/src/org/chromium/net/
X509Util.java 423 public static AndroidCertVerifyResult verifyServerCertificates(byte[][] certChain,
427 if (certChain == null || certChain.length == 0 || certChain[0] == null) {
429 "chain passed as |certChain|. |certChain|=" + Arrays.deepToString(certChain));
439 X509Certificate[] serverCertificates = new X509Certificate[certChain.length];
441 for (int i = 0; i < certChain.length; ++i) {
442 serverCertificates[i] = createCertificateFromBytes(certChain[i])
    [all...]
AndroidNetworkLibrary.java 205 * @param certChain The ASN.1 DER encoded bytes for certificates.
211 public static AndroidCertVerifyResult verifyServerCertificates(byte[][] certChain,
215 return X509Util.verifyServerCertificates(certChain, authType, host);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 101 Certificate[] certChain;
111 this.certChain = null;
117 Certificate[] certChain)
122 this.certChain = certChain;
129 Certificate[] certChain)
134 this.certChain = certChain;
180 Certificate[] certChain)
186 this.certChain = certChain
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
WebsiteSettingsPopup.java 204 byte[][] certChain = nativeGetCertificateChain(mWebContents);
205 if (certChain == null) {
210 CertificateViewer.showCertificateChain(mContext, certChain);
SSLClientCertificateRequest.java 308 long requestPtr, byte[][] certChain, AndroidPrivateKey androidKey);
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 195 Certificate[] certChain = certificates.get(signatureFile);
196 if (certChain != null) {
197 certChains.add(certChain);
  /external/chromium_org/net/third_party/nss/ssl/
sslsecur.c 741 const CERTCertificateList *certChain,
762 if (!certChain) {
769 sc->serverCertChain = (certChain) ? CERT_DupCertList(certChain) :
    [all...]
ssl.h 438 CERTCertificateList *certChain);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/test/
https_forwarder.py 126 tlsConnection.handshakeServer(certChain=self.cert_chain,
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLHeartbleedTest.java 271 X509Certificate[] certChain = new X509Certificate[] {
281 new KeyManager[] {new HardcodedCertX509KeyManager(privateKey, certChain)},
    [all...]
OpenSSLEarlyCCSTest.java 269 X509Certificate[] certChain = new X509Certificate[] {
279 new KeyManager[] {new HardcodedCertX509KeyManager(privateKey, certChain)},
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 447 Certificate[] certChain = new Certificate[cs.size()];
449 for (int i = 0; i != certChain.length; i++)
451 certChain[i] = (Certificate)cs.elementAt(i);
454 return certChain;
    [all...]

Completed in 1362 milliseconds

1 2