Lines Matching defs:key
178 const uint8_t *key) {
193 return encrypt_quic_connection_id(p, p, key);
198 const uint8_t *key) {
213 return encrypt_quic_connection_id(p, p, key);
217 const uint8_t *key) {
221 if (!EVP_EncryptInit_ex(ctx, EVP_aes_128_ecb(), nullptr, key, nullptr)) {
238 const uint8_t *key) {
242 if (!EVP_DecryptInit_ex(ctx, EVP_aes_128_ecb(), nullptr, key, nullptr)) {
364 int generate_quic_connection_id_encryption_key(uint8_t *key, size_t keylen,
369 constexpr uint8_t info[] = "connection id encryption key";
374 if (ngtcp2_crypto_hkdf(key, keylen, &sha256, secret, secretlen, salt, saltlen,