OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TLSConnection
(Results
1 - 11
of
11
) 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
...]
SMTP_TLS.py
4
from tlslite.
TLSConnection
import
TLSConnection
42
L{tlslite.
TLSConnection
.
TLSConnection
} for details on which
109
conn =
TLSConnection
(self.sock)
IMAP4_TLS.py
5
from tlslite.
TLSConnection
import
TLSConnection
43
L{tlslite.
TLSConnection
.
TLSConnection
} for details on which
129
self.sock =
TLSConnection
(self.sock)
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
...]
POP3_TLS.py
5
from tlslite.
TLSConnection
import
TLSConnection
43
L{tlslite.
TLSConnection
.
TLSConnection
} for details on which
135
self.sock =
TLSConnection
(self.sock)
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/
twistedclient.py
21
connection =
TLSConnection
(s)
/external/chromium_org/third_party/tlslite/tlslite/
api.py
6
from tlslite.
TLSConnection
import
TLSConnection
16
This imports all the important objects (
TLSConnection
, Checker,
27
from
TLSConnection
import
TLSConnection
53
from
TLSConnection
import
TLSConnection
TLSConnection.py
18
class
TLSConnection
(TLSRecordLayer):
45
"""Create a new
TLSConnection
instance.
[
all
...]
/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
...]
Completed in 182 milliseconds