OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mycert
(Results
1 - 7
of
7
) sorted by null
/external/scapy/test/tls/
example_server.py
28
t = TLSServerAutomaton(
mycert
=basedir+'/test/tls/pki/srv_cert.pem',
example_client.py
31
mycert
=basedir+"/test/tls/pki/cli_cert.pem",
variable
travis_test_server.py
59
t = TLSServerAutomaton(
mycert
=os.path.join(crt_basedir, 'srv_cert.pem'),
/external/scapy/scapy/layers/tls/
automaton.py
52
def parse_args(self,
mycert
=None, mykey=None, **kargs):
64
if
mycert
:
65
self.
mycert
= Cert(
mycert
)
67
self.
mycert
= None
automaton_cli.py
50
_'
mycert
' and 'mykey' may be provided as filenames. They will be used in
62
mycert
=None, mykey=None,
67
super(TLSClientAutomaton, self).parse_args(
mycert
=
mycert
,
136
self.cur_session.client_certs = self.
mycert
241
if not self.mykey or not self.
mycert
:
321
if self.
mycert
:
322
certs = [self.
mycert
]
357
self.
mycert
is None or
684
if not self.mykey or not self.
mycert
[
all
...]
automaton_srv.py
15
> t = TLSServerAutomaton(
mycert
='<cert.pem>', mykey='<key.pem>')
50
_'
mycert
' and 'mykey' may be provided as filenames. They are needed for any
61
mycert
=None, mykey=None,
68
super(TLSServerAutomaton, self).parse_args(
mycert
=
mycert
,
174
self.cur_session.server_certs = [self.
mycert
]
585
cert = self.
mycert
/external/libvncserver/webclients/java-applet/ssl/
ss_vncviewer
41
# -
mycert
/path/to/
mycert
.pem
48
# -
mycert
specifies this client's cert+key PEM file for the VNC server to
261
"-
mycert
") shift;
mycert
="$1"
494
# check -ssh and -
mycert
/-verify conflict:
496
if [ "X$
mycert
" != "X" -o "X$verify" != "X" ]; then
497
echo "-
mycert
and -verify cannot be used in -ssh mode"
514
mycert
=""
535
mycert
="
[
all
...]
Completed in 723 milliseconds