Home
last modified time | relevance | path

Searched refs:cipherType (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/tlslite/tlslite/utils/
Dopenssl_aes.py24 cipherType = m2.aes_128_cbc()
26 cipherType = m2.aes_192_cbc()
28 cipherType = m2.aes_256_cbc()
29 m2.cipher_init(context, cipherType, self.key, self.IV, encrypt)
Dopenssl_tripledes.py23 cipherType = m2.des_ede3_cbc()
24 m2.cipher_init(context, cipherType, self.key, self.IV, encrypt)
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLCipher.java264 final long cipherType = NativeCrypto.EVP_get_cipherbyname(getCipherName(encodedKey.length, in engineInitInternal() local
266 if (cipherType == 0) { in engineInitInternal()
271 final int ivLength = NativeCrypto.EVP_CIPHER_iv_length(cipherType); in engineInitInternal()
287 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, null, null, in engineInitInternal() local
292 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, encodedKey, iv, in engineInitInternal() local
/external/chromium_org/net/third_party/nss/ssl/
Dsslauth.c122 cipherName = ssl_cipherName[ss->sec.cipherType]; in SSL_SecurityStatus()
124 cipherName = ssl3_cipherName[ss->sec.cipherType]; in SSL_SecurityStatus()
Dsslcon.c1283 sid->u.ssl2.cipherType = cipher; in ssl2_FillInSID()
1323 int cipherType) in ssl2_ProduceKeys() argument
1347 nkm = ssl_Specs[cipherType].nkm; in ssl2_ProduceKeys()
1348 nkd = ssl_Specs[cipherType].nkd; in ssl2_ProduceKeys()
1399 int cipherType = sid->u.ssl2.cipherType; in ssl2_CreateSessionCypher() local
1417 switch (cipherType) { in ssl2_CreateSessionCypher()
1428 SSL_GETPID(), ss->fd, cipherType)); in ssl2_CreateSessionCypher()
1439 cipherType); in ssl2_CreateSessionCypher()
1450 rv = ssl2_CreateMAC(&ss->sec, rk, wk, cipherType); in ssl2_CreateSessionCypher()
1456 ssl_cipherName[cipherType])); in ssl2_CreateSessionCypher()
[all …]
Dsslsnce.c112 /* 1 */ PRUint8 cipherType; member
476 to->u.ssl2.cipherType = from->u.ssl2.cipherType; in ConvertFromSID()
498 to->addr.pr_s6_addr32[3], to->u.ssl2.cipherType)); in ConvertFromSID()
558 to->u.ssl2.cipherType = from->u.ssl2.cipherType; in ConvertToSID()
574 to->u.ssl2.cipherType)); in ConvertToSID()
874 sid->creationTime, sid->u.ssl2.cipherType)); in ServerSessionIDCache()
956 sid->creationTime, sid->u.ssl2.cipherType)); in ServerSessionIDUncache()
Dsslnonce.c355 zap->u.ssl2.cipherType)); in UncacheSID()
Dsslinfo.c51 inf.cipherSuite = ss->sec.cipherType | 0xff00; in SSL_GetChannelInfo()
Dsslimpl.h662 int cipherType; member
1162 int cipherType; /* ssl 2 & 3 */ member
Dssl3con.c1461 ss->sec.cipherType = cipher; in ssl3_SetupPendingCipherSpec()