/third_party/node/deps/ngtcp2/ngtcp2/crypto/ |
D | shared.c | 215 ngtcp2_crypto_cipher_ctx hp_ctx = {0}; in ngtcp2_crypto_derive_and_install_rx_key() local 278 if (ngtcp2_crypto_cipher_ctx_encrypt_init(&hp_ctx, hp, hp_key) != 0) { in ngtcp2_crypto_derive_and_install_rx_key() 284 rv = ngtcp2_conn_install_early_key(conn, &aead_ctx, iv, ivlen, &hp_ctx); in ngtcp2_crypto_derive_and_install_rx_key() 291 &hp_ctx); in ngtcp2_crypto_derive_and_install_rx_key() 305 ivlen, &hp_ctx); in ngtcp2_crypto_derive_and_install_rx_key() 318 ngtcp2_crypto_cipher_ctx_free(&hp_ctx); in ngtcp2_crypto_derive_and_install_rx_key() 356 ngtcp2_crypto_cipher_ctx hp_ctx = {0}; in ngtcp2_crypto_derive_and_install_tx_key() local 419 if (ngtcp2_crypto_cipher_ctx_encrypt_init(&hp_ctx, hp, hp_key) != 0) { in ngtcp2_crypto_derive_and_install_tx_key() 425 rv = ngtcp2_conn_install_early_key(conn, &aead_ctx, iv, ivlen, &hp_ctx); in ngtcp2_crypto_derive_and_install_tx_key() 432 &hp_ctx); in ngtcp2_crypto_derive_and_install_tx_key() [all …]
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
D | ngtcp2_conn.h | 319 ngtcp2_crypto_cipher_ctx hp_ctx; member 329 ngtcp2_crypto_cipher_ctx hp_ctx; member 490 ngtcp2_crypto_cipher_ctx hp_ctx; member 641 ngtcp2_crypto_cipher_ctx hp_ctx; member 645 ngtcp2_crypto_cipher_ctx hp_ctx; member
|
D | ngtcp2_conn.c | 1478 conn_call_delete_crypto_cipher_ctx(conn, &conn->vneg.rx.hp_ctx); in conn_vneg_crypto_free() 1483 conn_call_delete_crypto_cipher_ctx(conn, &conn->vneg.tx.hp_ctx); in conn_vneg_crypto_free() 1499 conn_call_delete_crypto_cipher_ctx(conn, &conn->early.hp_ctx); in ngtcp2_conn_del() 1518 conn_call_delete_crypto_cipher_ctx(conn, &conn->pktns.crypto.rx.hp_ctx); in ngtcp2_conn_del() 1524 conn_call_delete_crypto_cipher_ctx(conn, &conn->pktns.crypto.tx.hp_ctx); in ngtcp2_conn_del() 1531 conn_call_delete_crypto_cipher_ctx(conn, &conn->hs_pktns->crypto.rx.hp_ctx); in ngtcp2_conn_del() 1537 conn_call_delete_crypto_cipher_ctx(conn, &conn->hs_pktns->crypto.tx.hp_ctx); in ngtcp2_conn_del() 1544 conn_call_delete_crypto_cipher_ctx(conn, &conn->in_pktns->crypto.rx.hp_ctx); in ngtcp2_conn_del() 1550 conn_call_delete_crypto_cipher_ctx(conn, &conn->in_pktns->crypto.tx.hp_ctx); in ngtcp2_conn_del() 2575 cc.hp_ctx = pktns->crypto.tx.hp_ctx; in conn_write_handshake_pkt() [all …]
|
D | ngtcp2_crypto.h | 121 ngtcp2_crypto_cipher_ctx hp_ctx; member
|
D | ngtcp2_ppe.c | 137 rv = cc->hp_mask(mask, &cc->hp, &cc->hp_ctx, buf->begin + ppe->sample_offset); in ngtcp2_ppe_final()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/includes/ngtcp2/ |
D | ngtcp2.h | 2743 const ngtcp2_crypto_cipher_ctx *hp_ctx, 3610 const ngtcp2_crypto_cipher_ctx *hp_ctx); 3896 const uint8_t *iv, size_t ivlen, const ngtcp2_crypto_cipher_ctx *hp_ctx); 3924 const uint8_t *iv, size_t ivlen, const ngtcp2_crypto_cipher_ctx *hp_ctx); 3951 const uint8_t *iv, size_t ivlen, const ngtcp2_crypto_cipher_ctx *hp_ctx); 3982 const ngtcp2_crypto_cipher_ctx *hp_ctx); 4013 const ngtcp2_crypto_cipher_ctx *hp_ctx);
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/includes/ngtcp2/ |
D | ngtcp2_crypto.h | 315 const ngtcp2_crypto_cipher_ctx *hp_ctx, 330 const ngtcp2_crypto_cipher_ctx *hp_ctx,
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/wolfssl/ |
D | wolfssl.c | 275 const ngtcp2_crypto_cipher_ctx *hp_ctx, in ngtcp2_crypto_hp_mask() argument 278 WOLFSSL_EVP_CIPHER_CTX *actx = hp_ctx->native_handle; in ngtcp2_crypto_hp_mask()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/ |
D | boringssl.c | 368 const ngtcp2_crypto_cipher_ctx *hp_ctx, in ngtcp2_crypto_hp_mask() argument 371 ngtcp2_crypto_boringssl_cipher_ctx *ctx = hp_ctx->native_handle; in ngtcp2_crypto_hp_mask()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/picotls/ |
D | picotls.c | 340 const ngtcp2_crypto_cipher_ctx *hp_ctx, in ngtcp2_crypto_hp_mask() argument 342 ptls_cipher_context_t *actx = hp_ctx->native_handle; in ngtcp2_crypto_hp_mask()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/ |
D | openssl.c | 577 const ngtcp2_crypto_cipher_ctx *hp_ctx, in ngtcp2_crypto_hp_mask() argument 580 EVP_CIPHER_CTX *actx = hp_ctx->native_handle; in ngtcp2_crypto_hp_mask()
|