Searched refs:tlsConnection (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/third_party/tlslite/tlslite/integration/ |
D | TLSSocketServerMixIn.py | 51 tlsConnection = TLSConnection(sock) 52 if self.handshake(tlsConnection) == True: 53 self.RequestHandlerClass(tlsConnection, client_address, self) 54 tlsConnection.close() 58 def handshake(self, tlsConnection): argument
|
D | ClientHelper.py | 146 def _handshake(self, tlsConnection): argument 148 tlsConnection.handshakeClientSRP(username=self.username, 154 tlsConnection.handshakeClientSharedKey(username=self.username, 158 tlsConnection.handshakeClientCert(certChain=self.certChain, 163 self.tlsSession = tlsConnection.session
|
D | HTTPTLSConnection.py | 35 def _handshake(self, tlsConnection): argument 168 def _handshake(self, tlsConnection): argument 169 ClientHelper._handshake(self, tlsConnection)
|
D | AsyncStateMachine.py | 131 self.reader = self.tlsConnection.readAsync(16384) 208 handshaker = self.tlsConnection.handshakeServerAsync(**args) 216 self.closer = self.tlsConnection.closeAsync() 230 self.writer = self.tlsConnection.writeAsync(writeBuffer)
|
D | TLSAsyncDispatcherMixIn.py | 80 self.tlsConnection = TLSConnection(sock)
|
D | TLSTwistedProtocolWrapper.py | 130 self.tlsConnection = TLSConnection(self.fakeSocket)
|
/external/chromium_org/third_party/tlslite/test/ |
D | httpsserver.py | 17 def handshake(self, tlsConnection): argument 19 tlsConnection.handshakeServer(certChain=certChain, 22 tlsConnection.ignoreAbruptClose = True
|
/external/chromium_org/third_party/tlslite/scripts/ |
D | tls.py | 646 def handshake(self, tlsConnection): argument 647 tlsConnection.handshakeServer(certChain=x509Chain, privateKey=x509Key) 664 def handshake(self, tlsConnection): argument 665 tlsConnection.handshakeServer(certChain=cryptoIDChain, privateKey=cryptoIDKey,
|
/external/chromium_org/net/tools/testserver/ |
D | testserver.py | 174 def handshake(self, tlsConnection): argument 178 self.tlsConnection = tlsConnection 179 tlsConnection.handshakeServer(certChain=self.cert_chain, 190 tlsConnection.ignoreAbruptClose = True 1468 channel_id = self.server.tlsConnection.channel_id.tostring()
|
/external/chromium/net/tools/testserver/ |
D | testserver.py | 97 def handshake(self, tlsConnection): argument 100 tlsConnection.handshakeServer(certChain=self.cert_chain, 106 tlsConnection.ignoreAbruptClose = True
|
/external/chromium_org/third_party/tlslite/ |
D | readme.txt | 549 def handshake(self, tlsConnection): 551 tlsConnection.handshakeServer(certChain=certChain, 554 tlsConnection.ignoreAbruptClose = True 580 self.tlsConnection.ignoreAbruptClose = True
|