OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cipher_alg
(Results
1 - 5
of
5
) sorted by null
/external/scapy/scapy/layers/tls/
session.py
95
self.cipher = ciphersuite.
cipher_alg
()
99
if ciphersuite.
cipher_alg
.type == "aead":
144
cipher_alg
= cs.
cipher_alg
147
if (
cipher_alg
.type == "stream") or (
cipher_alg
.type == "block"):
161
start +=
cipher_alg
.key_len
162
end = start +
cipher_alg
.key_len
165
reqLen =
cipher_alg
.expanded_key_len
173
pos += 2*
cipher_alg
.key_le
[
all
...]
handshake_sslv2.py
307
key = randstring(cs_cls.
cipher_alg
.key_len)
321
if self.keyarg == b"" and cs_cls.
cipher_alg
.type == "block":
322
self.keyarg = randstring(cs_cls.
cipher_alg
.block_size)
/external/wpa_supplicant_8/src/tls/
tlsv1_record.h
46
enum crypto_cipher_alg
cipher_alg
;
member in struct:tlsv1_record_layer
tlsv1_record.c
61
rl->
cipher_alg
= data->alg;
86
if (rl->
cipher_alg
!= CRYPTO_CIPHER_NULL) {
87
rl->write_cbc = crypto_cipher_init(rl->
cipher_alg
,
120
if (rl->
cipher_alg
!= CRYPTO_CIPHER_NULL) {
121
rl->read_cbc = crypto_cipher_init(rl->
cipher_alg
,
/external/scapy/scapy/layers/tls/crypto/
suites.py
34
cipher_alg
= _tls_cipher_algs.get(s)
51
cipher_alg
= _tls_cipher_algs.get(cipher_name)
54
if
cipher_alg
is not None and
cipher_alg
.type != "aead":
62
cipher_alg
= _tls_cipher_algs.get(cipher_name.rstrip("_EXPORT40"))
67
return kx_alg,
cipher_alg
, hmac_alg, hash_alg, tls1_3
97
dct["
cipher_alg
"] = c
Completed in 475 milliseconds