OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tlsConnection
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/tlslite/tlslite/integration/
TLSSocketServerMixIn.py
3
from tlslite.
TLSConnection
import
TLSConnection
34
def handshake(self,
tlsConnection
):
36
tlsConnection
.handshakeServer(certChain=certChain,
39
tlsConnection
.ignoreAbruptClose = True
51
tlsConnection
=
TLSConnection
(sock)
52
if self.handshake(
tlsConnection
) == True:
53
self.RequestHandlerClass(
tlsConnection
, client_address, self)
54
tlsConnection
.close(
[
all
...]
ClientHelper.py
43
L{tlslite.
TLSConnection
.
TLSConnection
} for details on which
146
def _handshake(self,
tlsConnection
):
148
tlsConnection
.handshakeClientSRP(username=self.username,
154
tlsConnection
.handshakeClientSharedKey(username=self.username,
158
tlsConnection
.handshakeClientCert(certChain=self.certChain,
163
self.tlsSession =
tlsConnection
.sessio
HTTPTLSConnection.py
5
from tlslite.
TLSConnection
import
TLSConnection
28
#Use a
TLSConnection
to emulate a socket
29
self.sock =
TLSConnection
(sock)
35
def _handshake(self,
tlsConnection
):
48
@type
tlsConnection
: L{tlslite.
TLSConnection
.
TLSConnection
}
49
@param
tlsConnection
: The connection to perform the handshake
93
L{tlslite.
TLSConnection
.TLSConnection} for details on whic
[
all
...]
AsyncStateMachine.py
131
self.reader = self.
tlsConnection
.readAsync(16384)
206
L{tlslite.
TLSConnection
.
TLSConnection
.handshakeServerAsync}.
208
handshaker = self.
tlsConnection
.handshakeServerAsync(**args)
216
self.closer = self.
tlsConnection
.closeAsync()
230
self.writer = self.
tlsConnection
.writeAsync(writeBuffer)
TLSAsyncDispatcherMixIn.py
5
from tlslite.
TLSConnection
import
TLSConnection
60
self.
tlsConnection
.ignoreAbruptClose = True
80
self.
tlsConnection
=
TLSConnection
(sock)
136
if hasattr(self, "
tlsConnection
"):
TLSTwistedProtocolWrapper.py
7
from tlslite.
TLSConnection
import
TLSConnection
14
#The
TLSConnection
is created around a "fake socket" that
130
self.
tlsConnection
=
TLSConnection
(self.fakeSocket)
/external/chromium_org/third_party/tlslite/test/
httpsserver.py
17
def handshake(self,
tlsConnection
):
19
tlsConnection
.handshakeServer(certChain=certChain,
22
tlsConnection
.ignoreAbruptClose = True
/external/chromium_org/third_party/tlslite/scripts/
tls.py
52
c =
TLSConnection
(sock)
422
return
TLSConnection
(lsock.accept()[0])
646
def handshake(self,
tlsConnection
):
647
tlsConnection
.handshakeServer(certChain=x509Chain, privateKey=x509Key)
664
def handshake(self,
tlsConnection
):
665
tlsConnection
.handshakeServer(certChain=cryptoIDChain, privateKey=cryptoIDKey,
684
return
TLSConnection
(lsock.accept()[0])
837
return
TLSConnection
(sock)
[
all
...]
/external/chromium_org/net/tools/testserver/
testserver.py
162
def handshake(self,
tlsConnection
):
166
self.
tlsConnection
=
tlsConnection
167
tlsConnection
.handshakeServer(certChain=self.cert_chain,
174
tlsConnection
.ignoreAbruptClose = True
[
all
...]
/external/chromium/net/tools/testserver/
testserver.py
97
def handshake(self,
tlsConnection
):
100
tlsConnection
.handshakeServer(certChain=self.cert_chain,
106
tlsConnection
.ignoreAbruptClose = True
[
all
...]
Completed in 3627 milliseconds