Home
last modified time | relevance | path

Searched refs:crypto_info (Results 1 – 22 of 22) sorted by relevance

/linux-6.1.9/drivers/crypto/rockchip/
Drk3288_crypto.c98 static int rk_crypto_register(struct rk_crypto_info *crypto_info) in rk_crypto_register() argument
104 rk_cipher_algs[i]->dev = crypto_info; in rk_crypto_register()
140 struct rk_crypto_info *crypto_info = data; in rk_crypto_action() local
142 reset_control_assert(crypto_info->rst); in rk_crypto_action()
154 struct rk_crypto_info *crypto_info; in rk_crypto_probe() local
157 crypto_info = devm_kzalloc(&pdev->dev, in rk_crypto_probe()
158 sizeof(*crypto_info), GFP_KERNEL); in rk_crypto_probe()
159 if (!crypto_info) { in rk_crypto_probe()
164 crypto_info->rst = devm_reset_control_get(dev, "crypto-rst"); in rk_crypto_probe()
165 if (IS_ERR(crypto_info->rst)) { in rk_crypto_probe()
[all …]
/linux-6.1.9/drivers/net/ethernet/mellanox/mlx5/core/en_accel/
Dktls_txrx.c24 union mlx5e_crypto_info *crypto_info, in fill_static_params() argument
35 switch (crypto_info->crypto_info.cipher_type) { in fill_static_params()
38 &crypto_info->crypto_info_128; in fill_static_params()
45 &crypto_info->crypto_info_256; in fill_static_params()
52 crypto_info->crypto_info.cipher_type); in fill_static_params()
76 union mlx5e_crypto_info *crypto_info, in mlx5e_ktls_build_static_params() argument
97 fill_static_params(&wqe->params, crypto_info, key_id, resync_tcp_sn); in mlx5e_ktls_build_static_params()
Dktls.c11 struct tls_crypto_info *crypto_info, in mlx5_ktls_create_key() argument
17 switch (crypto_info->cipher_type) { in mlx5_ktls_create_key()
20 (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5_ktls_create_key()
28 (struct tls12_crypto_info_aes_gcm_256 *)crypto_info; in mlx5_ktls_create_key()
50 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add() argument
57 if (!mlx5e_ktls_type_check(mdev, crypto_info)) in mlx5e_ktls_add()
61 err = mlx5e_ktls_add_tx(netdev, sk, crypto_info, start_offload_tcp_sn); in mlx5e_ktls_add()
63 err = mlx5e_ktls_add_rx(netdev, sk, crypto_info, start_offload_tcp_sn); in mlx5e_ktls_add()
Dktls.h13 struct tls_crypto_info *crypto_info,
33 struct tls_crypto_info *crypto_info) in mlx5e_ktls_type_check() argument
35 switch (crypto_info->cipher_type) { in mlx5e_ktls_type_check()
37 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check()
41 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check()
Dktls_utils.h23 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn);
26 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn);
31 struct tls_crypto_info crypto_info; member
81 union mlx5e_crypto_info *crypto_info,
Dktls_rx.c46 union mlx5e_crypto_info crypto_info; member
149 mlx5e_ktls_build_static_params(wqe, sq->pc, sq->sqn, &priv_rx->crypto_info, in post_static_params()
375 switch (priv_rx->crypto_info.crypto_info.cipher_type) { in resync_handle_seq_match()
378 &priv_rx->crypto_info.crypto_info_128; in resync_handle_seq_match()
386 &priv_rx->crypto_info.crypto_info_256; in resync_handle_seq_match()
394 priv_rx->crypto_info.crypto_info.cipher_type); in resync_handle_seq_match()
607 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add_rx() argument
624 err = mlx5_ktls_create_key(mdev, crypto_info, &priv_rx->key_id); in mlx5e_ktls_add_rx()
630 switch (crypto_info->cipher_type) { in mlx5e_ktls_add_rx()
632 priv_rx->crypto_info.crypto_info_128 = in mlx5e_ktls_add_rx()
[all …]
Dktls_tx.c96 union mlx5e_crypto_info crypto_info; member
467 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) in mlx5e_ktls_add_tx() argument
483 err = mlx5_ktls_create_key(pool->mdev, crypto_info, &priv_tx->key_id); in mlx5e_ktls_add_tx()
488 switch (crypto_info->cipher_type) { in mlx5e_ktls_add_tx()
490 priv_tx->crypto_info.crypto_info_128 = in mlx5e_ktls_add_tx()
491 *(struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5e_ktls_add_tx()
494 priv_tx->crypto_info.crypto_info_256 = in mlx5e_ktls_add_tx()
495 *(struct tls12_crypto_info_aes_gcm_256 *)crypto_info; in mlx5e_ktls_add_tx()
499 crypto_info->cipher_type); in mlx5e_ktls_add_tx()
565 mlx5e_ktls_build_static_params(wqe, sq->pc, sq->sqn, &priv_tx->crypto_info, in post_static_params()
[all …]
/linux-6.1.9/net/tls/
Dtls_main.c359 struct tls_crypto_info *crypto_info; in do_tls_getsockopt_conf() local
366 if (!optval || (len < sizeof(*crypto_info))) { in do_tls_getsockopt_conf()
378 crypto_info = &ctx->crypto_send.info; in do_tls_getsockopt_conf()
381 crypto_info = &ctx->crypto_recv.info; in do_tls_getsockopt_conf()
385 if (!TLS_CRYPTO_INFO_READY(crypto_info)) { in do_tls_getsockopt_conf()
390 if (len == sizeof(*crypto_info)) { in do_tls_getsockopt_conf()
391 if (copy_to_user(optval, crypto_info, sizeof(*crypto_info))) in do_tls_getsockopt_conf()
396 switch (crypto_info->cipher_type) { in do_tls_getsockopt_conf()
400 container_of(crypto_info, in do_tls_getsockopt_conf()
424 container_of(crypto_info, in do_tls_getsockopt_conf()
[all …]
Dtls_device.c1079 struct tls_crypto_info *crypto_info; in tls_set_device_offload() local
1103 crypto_info = &ctx->crypto_send.info; in tls_set_device_offload()
1104 if (crypto_info->version != TLS_1_2_VERSION) { in tls_set_device_offload()
1109 switch (crypto_info->cipher_type) { in tls_set_device_offload()
1111 iv = ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->iv; in tls_set_device_offload()
1113 ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->rec_seq; in tls_set_device_offload()
1116 iv = ((struct tls12_crypto_info_aes_gcm_256 *)crypto_info)->iv; in tls_set_device_offload()
1118 ((struct tls12_crypto_info_aes_gcm_256 *)crypto_info)->rec_seq; in tls_set_device_offload()
1124 cipher_sz = &tls_cipher_size_desc[crypto_info->cipher_type]; in tls_set_device_offload()
1132 prot->version = crypto_info->version; in tls_set_device_offload()
[all …]
Dtls_device_fallback.c472 struct tls_crypto_info *crypto_info) in tls_sw_fallback_init() argument
487 switch (crypto_info->cipher_type) { in tls_sw_fallback_init()
489 key = ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->key; in tls_sw_fallback_init()
492 key = ((struct tls12_crypto_info_aes_gcm_256 *)crypto_info)->key; in tls_sw_fallback_init()
498 cipher_sz = &tls_cipher_size_desc[crypto_info->cipher_type]; in tls_sw_fallback_init()
Dtls_sw.c2469 struct tls_crypto_info *crypto_info; in tls_set_sw_offload() local
2514 crypto_info = &ctx->crypto_send.info; in tls_set_sw_offload()
2524 crypto_info = &ctx->crypto_recv.info; in tls_set_sw_offload()
2531 switch (crypto_info->cipher_type) { in tls_set_sw_offload()
2535 gcm_128_info = (void *)crypto_info; in tls_set_sw_offload()
2552 gcm_256_info = (void *)crypto_info; in tls_set_sw_offload()
2569 ccm_128_info = (void *)crypto_info; in tls_set_sw_offload()
2586 chacha20_poly1305_info = (void *)crypto_info; in tls_set_sw_offload()
2603 sm4_gcm_info = (void *)crypto_info; in tls_set_sw_offload()
2620 sm4_ccm_info = (void *)crypto_info; in tls_set_sw_offload()
[all …]
Dtls.h129 struct tls_crypto_info *crypto_info);
/linux-6.1.9/drivers/net/ethernet/chelsio/inline_crypto/chtls/
Dchtls_main.c470 struct tls_crypto_info crypto_info = { 0 }; in do_chtls_getsockopt() local
472 crypto_info.version = TLS_1_2_VERSION; in do_chtls_getsockopt()
473 if (copy_to_user(optval, &crypto_info, sizeof(struct tls_crypto_info))) in do_chtls_getsockopt()
493 struct tls_crypto_info *crypto_info, tmp_crypto_info; in do_chtls_setsockopt() local
501 if (sockptr_is_null(optval) || optlen < sizeof(*crypto_info)) { in do_chtls_setsockopt()
506 rc = copy_from_sockptr(&tmp_crypto_info, optval, sizeof(*crypto_info)); in do_chtls_setsockopt()
518 crypto_info = (struct tls_crypto_info *)&csk->tlshws.crypto_info; in do_chtls_setsockopt()
526 crypto_info[0] = tmp_crypto_info; in do_chtls_setsockopt()
528 rc = copy_from_sockptr_offset((char *)crypto_info + in do_chtls_setsockopt()
529 sizeof(*crypto_info), in do_chtls_setsockopt()
[all …]
Dchtls_hw.c272 &csk->tlshws.crypto_info; in chtls_key_info()
285 &csk->tlshws.crypto_info; in chtls_key_info()
Dchtls.h275 } crypto_info; member
/linux-6.1.9/drivers/net/ethernet/fungible/funeth/
Dfuneth_ktls.c20 struct tls_crypto_info *crypto_info, in fun_ktls_add() argument
38 if (crypto_info->version == TLS_1_2_VERSION) in fun_ktls_add()
43 switch (crypto_info->cipher_type) { in fun_ktls_add()
45 struct tls12_crypto_info_aes_gcm_128 *c = (void *)crypto_info; in fun_ktls_add()
/linux-6.1.9/Documentation/networking/
Dtls.rst49 struct tls12_crypto_info_aes_gcm_128 crypto_info;
51 crypto_info.info.version = TLS_1_2_VERSION;
52 crypto_info.info.cipher_type = TLS_CIPHER_AES_GCM_128;
53 memcpy(crypto_info.iv, iv_write, TLS_CIPHER_AES_GCM_128_IV_SIZE);
54 memcpy(crypto_info.rec_seq, seq_number_write,
56 memcpy(crypto_info.key, cipher_key_write, TLS_CIPHER_AES_GCM_128_KEY_SIZE);
57 memcpy(crypto_info.salt, implicit_iv_write, TLS_CIPHER_AES_GCM_128_SALT_SIZE);
59 setsockopt(sock, SOL_TLS, TLS_TX, &crypto_info, sizeof(crypto_info));
Dtls-offload.rst93 struct tls_crypto_info *crypto_info,
99 Cryptographic information in ``crypto_info`` includes the key, iv, salt
102 sequence number from ``crypto_info``. The driver can add its state
/linux-6.1.9/drivers/net/ethernet/netronome/nfp/crypto/
Dtls.c266 struct tls_crypto_info *crypto_info, in nfp_net_tls_add() argument
286 if (!nfp_net_cipher_supported(nn, crypto_info->cipher_type, direction)) in nfp_net_tls_add()
337 tls_ci = (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in nfp_net_tls_add()
/linux-6.1.9/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/
Dchcr_ktls.c71 struct tls_crypto_info *crypto_info, in chcr_ktls_save_keys() argument
81 switch (crypto_info->cipher_type) { in chcr_ktls_save_keys()
84 (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in chcr_ktls_save_keys()
129 crypto_info->cipher_type); in chcr_ktls_save_keys()
415 struct tls_crypto_info *crypto_info, in chcr_ktls_dev_add() argument
476 ret = chcr_ktls_save_keys(tx_info, crypto_info, direction); in chcr_ktls_dev_add()
/linux-6.1.9/include/net/
Dtls.h289 struct tls_crypto_info *crypto_info,
/linux-6.1.9/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_main.c6439 struct tls_crypto_info *crypto_info, in cxgb4_ktls_dev_add() argument
6456 crypto_info, in cxgb4_ktls_dev_add()