Searched refs:cipher_alg (Results 1 – 5 of 5) sorted by relevance
95 self.cipher = ciphersuite.cipher_alg()99 if ciphersuite.cipher_alg.type == "aead":144 cipher_alg = cs.cipher_alg147 if (cipher_alg.type == "stream") or (cipher_alg.type == "block"):161 start += cipher_alg.key_len162 end = start + cipher_alg.key_len165 reqLen = cipher_alg.expanded_key_len173 pos += 2*cipher_alg.key_len177 if cipher_alg.type == "block":179 start += cipher_alg.block_size[all …]
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)
61 rl->cipher_alg = data->alg; in tlsv1_record_set_cipher_suite()86 if (rl->cipher_alg != CRYPTO_CIPHER_NULL) { in tlsv1_record_change_write_cipher()87 rl->write_cbc = crypto_cipher_init(rl->cipher_alg, in tlsv1_record_change_write_cipher()120 if (rl->cipher_alg != CRYPTO_CIPHER_NULL) { in tlsv1_record_change_read_cipher()121 rl->read_cbc = crypto_cipher_init(rl->cipher_alg, in tlsv1_record_change_read_cipher()
46 enum crypto_cipher_alg cipher_alg; member
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