Searched refs:type_block (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/net/third_party/nss/patches/ |
D | aesgcm.patch | 119 -typedef enum { type_stream, type_block } CipherType; 120 +typedef enum { type_stream, type_block, type_aead } CipherType; 289 - {cipher_rc2, calg_rc2, 16, 16, type_block, 8, 8, kg_strong}, 290 - {cipher_rc2_40, calg_rc2, 16, 5, type_block, 8, 8, kg_export}, 291 - {cipher_des, calg_des, 8, 8, type_block, 8, 8, kg_strong}, 292 - {cipher_3des, calg_3des, 24, 24, type_block, 8, 8, kg_strong}, 293 - {cipher_des40, calg_des, 8, 5, type_block, 8, 8, kg_export}, 294 - {cipher_idea, calg_idea, 16, 16, type_block, 8, 8, kg_strong}, 295 - {cipher_aes_128, calg_aes, 16, 16, type_block, 16,16, kg_strong}, 296 - {cipher_aes_256, calg_aes, 32, 32, type_block, 16,16, kg_strong}, [all …]
|
D | chacha20poly1305.patch | 37 {cipher_camellia_256, calg_camellia, 32,32, type_block, 16,16, 0, 0}, 38 {cipher_seed, calg_seed, 16,16, type_block, 16,16, 0, 0},
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | ssl3con.c | 281 {cipher_rc2, calg_rc2, 16,16, type_block, 8, 8, 0, 0}, 282 {cipher_rc2_40, calg_rc2, 16, 5, type_block, 8, 8, 0, 0}, 283 {cipher_des, calg_des, 8, 8, type_block, 8, 8, 0, 0}, 284 {cipher_3des, calg_3des, 24,24, type_block, 8, 8, 0, 0}, 285 {cipher_des40, calg_des, 8, 5, type_block, 8, 8, 0, 0}, 286 {cipher_idea, calg_idea, 16,16, type_block, 8, 8, 0, 0}, 287 {cipher_aes_128, calg_aes, 16,16, type_block, 16,16, 0, 0}, 288 {cipher_aes_256, calg_aes, 32,32, type_block, 16,16, 0, 0}, 289 {cipher_camellia_128, calg_camellia, 16,16, type_block, 16,16, 0, 0}, 290 {cipher_camellia_256, calg_camellia, 32,32, type_block, 16,16, 0, 0}, [all …]
|
D | derive.c | 120 if (cipher_def->type == type_block && in ssl3_KeyAndMacDeriveBypass()
|
D | sslimpl.h | 492 typedef enum { type_stream, type_block, type_aead } CipherType; enumerator
|