Searched refs:cipher_def (Results 1 – 6 of 6) sorted by relevance
412 cipher_def = pwSpec->cipher_def;414 calg = cipher_def->calg;629 cipher_def = pwSpec->cipher_def;631 + calg = cipher_def->calg;661 - calg = cipher_def->calg;864 cipher_def = cwSpec->cipher_def;889 + if (cipher_def->type == type_aead) {890 + const int nonceLen = cipher_def->explicit_nonce_size;891 + const int tagLen = cipher_def->tag_size;897 - if (cipher_def->type == type_block) {[all …]
70 + const ssl3CipherSuiteDef *cipher_def = &cipher_suite_defs[i];71 + if (cipher_def->bulk_cipher_alg == cipher_aes_128_gcm) {72 + SECStatus rv = ssl3_CipherPrefSet(ss, cipher_def->cipher_suite,
115 + maybeFalseStart = ss->ssl3.cwSpec->cipher_def->secret_key_size >= 10;179 - ss->ssl3.cwSpec->cipher_def->secret_key_size >= 10 &&
74 const ssl3BulkCipherDef *cipher_def = pwSpec->cipher_def; in ssl3_KeyAndMacDeriveBypass() local114 keySize = cipher_def->key_size; in ssl3_KeyAndMacDeriveBypass()115 effKeySize = cipher_def->secret_key_size; in ssl3_KeyAndMacDeriveBypass()116 IVSize = cipher_def->iv_size; in ssl3_KeyAndMacDeriveBypass()120 if (cipher_def->type == type_block && in ssl3_KeyAndMacDeriveBypass()
717 const ssl3CipherSuiteDef *cipher_def; in ssl3_config_match_init() local744 cipher_def = ssl_LookupCipherSuiteDef(suite->cipher_suite); in ssl3_config_match_init()745 if (!cipher_def) { in ssl3_config_match_init()749 cipher_alg = bulk_cipher_defs[cipher_def->bulk_cipher_alg].calg; in ssl3_config_match_init()753 kea_defs[cipher_def->key_exchange_alg].exchKeyType; in ssl3_config_match_init()762 switch (cipher_def->key_exchange_alg) { in ssl3_config_match_init()1442 pwSpec->cipher_def = &bulk_cipher_defs[cipher]; in ssl3_SetupPendingCipherSpec()1443 PORT_Assert(pwSpec->cipher_def->cipher == cipher); in ssl3_SetupPendingCipherSpec()1448 ss->sec.keyBits = pwSpec->cipher_def->key_size * BPB; in ssl3_SetupPendingCipherSpec()1449 ss->sec.secretKeyBits = pwSpec->cipher_def->secret_key_size * BPB; in ssl3_SetupPendingCipherSpec()[all …]
578 const ssl3BulkCipherDef *cipher_def; member