| /linux/drivers/crypto/rockchip/ |
| A D | rk3288_crypto.c | 324 if (!crypto_info) { in rk_crypto_probe() 329 crypto_info->dev = &pdev->dev; in rk_crypto_probe() 333 if (!crypto_info->variant) { in rk_crypto_probe() 339 if (IS_ERR(crypto_info->rst)) { in rk_crypto_probe() 340 err = PTR_ERR(crypto_info->rst); in rk_crypto_probe() 349 if (IS_ERR(crypto_info->reg)) { in rk_crypto_probe() 359 if (crypto_info->irq < 0) { in rk_crypto_probe() 360 err = crypto_info->irq; in rk_crypto_probe() 374 if (!crypto_info->engine) { in rk_crypto_probe() 399 register_debugfs(crypto_info); in rk_crypto_probe() [all …]
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ |
| A D | ktls_txrx.c | 24 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()
|
| A D | ktls.c | 13 struct tls_crypto_info *crypto_info) in mlx5_ktls_create_key() argument 18 switch (crypto_info->cipher_type) { in mlx5_ktls_create_key() 21 (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5_ktls_create_key() 29 (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()
|
| A D | ktls.h | 17 struct tls_crypto_info *crypto_info); 37 struct tls_crypto_info *crypto_info) in mlx5e_ktls_type_check() argument 39 switch (crypto_info->cipher_type) { in mlx5e_ktls_type_check() 41 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check() 45 if (crypto_info->version == TLS_1_2_VERSION) in mlx5e_ktls_type_check()
|
| A D | ktls_utils.h | 23 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,
|
| A D | ktls_rx.c | 46 union mlx5e_crypto_info crypto_info; member 376 switch (priv_rx->crypto_info.crypto_info.cipher_type) { in resync_handle_seq_match() 379 &priv_rx->crypto_info.crypto_info_128; in resync_handle_seq_match() 387 &priv_rx->crypto_info.crypto_info_256; in resync_handle_seq_match() 395 priv_rx->crypto_info.crypto_info.cipher_type); in resync_handle_seq_match() 606 struct tls_crypto_info *crypto_info, in mlx5e_ktls_add_rx() argument 622 switch (crypto_info->cipher_type) { in mlx5e_ktls_add_rx() 624 priv_rx->crypto_info.crypto_info_128 = in mlx5e_ktls_add_rx() 625 *(struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5e_ktls_add_rx() 628 priv_rx->crypto_info.crypto_info_256 = in mlx5e_ktls_add_rx() [all …]
|
| A D | ktls_tx.c | 97 union mlx5e_crypto_info crypto_info; member 455 struct tls_crypto_info *crypto_info, u32 start_offload_tcp_sn) in mlx5e_ktls_add_tx() argument 472 switch (crypto_info->cipher_type) { in mlx5e_ktls_add_tx() 474 priv_tx->crypto_info.crypto_info_128 = in mlx5e_ktls_add_tx() 475 *(struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in mlx5e_ktls_add_tx() 478 priv_tx->crypto_info.crypto_info_256 = in mlx5e_ktls_add_tx() 479 *(struct tls12_crypto_info_aes_gcm_256 *)crypto_info; in mlx5e_ktls_add_tx() 483 crypto_info->cipher_type); in mlx5e_ktls_add_tx() 488 dek = mlx5_ktls_create_key(priv->tls->dek_pool, crypto_info); in mlx5e_ktls_add_tx() 686 switch (priv_tx->crypto_info.crypto_info.cipher_type) { in tx_post_resync_params() [all …]
|
| /linux/net/tls/ |
| A D | tls_main.c | 76 .crypto_info = sizeof(struct ci) 443 struct tls_crypto_info *crypto_info; in do_tls_getsockopt_conf() local 462 crypto_info = &ctx->crypto_send.info; in do_tls_getsockopt_conf() 474 if (len == sizeof(*crypto_info)) { in do_tls_getsockopt_conf() 475 if (copy_to_user(optval, crypto_info, sizeof(*crypto_info))) in do_tls_getsockopt_conf() 491 if (copy_to_user(optval, crypto_info, cipher_desc->crypto_info)) in do_tls_getsockopt_conf() 594 switch (crypto_info->cipher_type) { in validate_crypto_info() 615 struct tls_crypto_info *crypto_info; in do_tls_setsockopt_conf() local 634 crypto_info = &crypto_ctx->info; in do_tls_setsockopt_conf() 640 rc = copy_from_sockptr(crypto_info, optval, sizeof(*crypto_info)); in do_tls_setsockopt_conf() [all …]
|
| A D | tls.h | 67 size_t crypto_info; member 82 static inline char *crypto_info_iv(struct tls_crypto_info *crypto_info, in crypto_info_iv() argument 85 return (char *)crypto_info + cipher_desc->iv_offset; in crypto_info_iv() 88 static inline char *crypto_info_key(struct tls_crypto_info *crypto_info, in crypto_info_key() argument 91 return (char *)crypto_info + cipher_desc->key_offset; in crypto_info_key() 94 static inline char *crypto_info_salt(struct tls_crypto_info *crypto_info, in crypto_info_salt() argument 97 return (char *)crypto_info + cipher_desc->salt_offset; in crypto_info_salt() 100 static inline char *crypto_info_rec_seq(struct tls_crypto_info *crypto_info, in crypto_info_rec_seq() argument 103 return (char *)crypto_info + cipher_desc->rec_seq_offset; in crypto_info_rec_seq() 146 const struct tls_crypto_info *crypto_info, [all …]
|
| A D | tls_device.c | 1062 struct tls_crypto_info *crypto_info; in tls_set_device_offload() local 1086 crypto_info = &ctx->crypto_send.info; in tls_set_device_offload() 1087 if (crypto_info->version != TLS_1_2_VERSION) { in tls_set_device_offload() 1092 cipher_desc = get_cipher_desc(crypto_info->cipher_type); in tls_set_device_offload() 1098 rc = init_prot_info(prot, crypto_info, cipher_desc); in tls_set_device_offload() 1102 iv = crypto_info_iv(crypto_info, cipher_desc); in tls_set_device_offload() 1103 rec_seq = crypto_info_rec_seq(crypto_info, cipher_desc); in tls_set_device_offload() 1120 rc = tls_sw_fallback_init(sk, offload_ctx, crypto_info); in tls_set_device_offload()
|
| A D | tls_device_fallback.c | 460 struct tls_crypto_info *crypto_info) in tls_sw_fallback_init() argument 465 cipher_desc = get_cipher_desc(crypto_info->cipher_type); in tls_sw_fallback_init() 479 crypto_info_key(crypto_info, cipher_desc), in tls_sw_fallback_init()
|
| A D | tls_sw.c | 2657 const struct tls_crypto_info *crypto_info, in init_prot_info() argument 2662 if (crypto_info->version == TLS_1_3_VERSION) { in init_prot_info() 2675 prot->version = crypto_info->version; in init_prot_info() 2676 prot->cipher_type = crypto_info->cipher_type; in init_prot_info() 2692 struct tls_crypto_info *crypto_info; in tls_set_sw_offload() local 2710 crypto_info = &ctx->crypto_send.info; in tls_set_sw_offload() 2719 crypto_info = &ctx->crypto_recv.info; in tls_set_sw_offload() 2734 iv = crypto_info_iv(crypto_info, cipher_desc); in tls_set_sw_offload() 2735 key = crypto_info_key(crypto_info, cipher_desc); in tls_set_sw_offload() 2736 salt = crypto_info_salt(crypto_info, cipher_desc); in tls_set_sw_offload() [all …]
|
| /linux/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
| A D | chtls_main.c | 470 struct tls_crypto_info crypto_info = { 0 }; in do_chtls_getsockopt() local 472 crypto_info.version = TLS_1_2_VERSION; in do_chtls_getsockopt() 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() 529 sizeof(*crypto_info), in do_chtls_setsockopt() 530 optval, sizeof(*crypto_info), in do_chtls_setsockopt() 532 - sizeof(*crypto_info)); in do_chtls_setsockopt() 544 crypto_info[0] = tmp_crypto_info; in do_chtls_setsockopt() 546 sizeof(*crypto_info), in do_chtls_setsockopt() 547 optval, sizeof(*crypto_info), in do_chtls_setsockopt() [all …]
|
| A D | chtls_hw.c | 272 &csk->tlshws.crypto_info; in chtls_key_info() 285 &csk->tlshws.crypto_info; in chtls_key_info()
|
| A D | chtls.h | 275 } crypto_info; member
|
| /linux/drivers/net/ethernet/fungible/funeth/ |
| A D | funeth_ktls.c | 20 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/Documentation/networking/ |
| A D | tls.rst | 49 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));
|
| A D | tls-offload.rst | 93 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/tools/testing/selftests/net/ |
| A D | tls.c | 33 struct tls_crypto_info crypto_info; member 248 tls12.crypto_info.version = 200; in TEST_F() 249 tls12.crypto_info.cipher_type = TLS_CIPHER_AES_GCM_128; in TEST_F() 252 tls12.crypto_info.version = TLS_1_2_VERSION; in TEST_F() 253 tls12.crypto_info.cipher_type = 50; in TEST_F() 256 tls12.crypto_info.version = TLS_1_2_VERSION; in TEST_F() 257 tls12.crypto_info.cipher_type = 59; in TEST_F() 260 tls12.crypto_info.version = TLS_1_2_VERSION; in TEST_F() 261 tls12.crypto_info.cipher_type = 10; in TEST_F() 264 tls12.crypto_info.version = TLS_1_2_VERSION; in TEST_F() [all …]
|
| /linux/drivers/net/ethernet/netronome/nfp/crypto/ |
| A D | tls.c | 266 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/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
| A D | chcr_ktls.c | 72 struct tls_crypto_info *crypto_info, in chcr_ktls_save_keys() argument 82 switch (crypto_info->cipher_type) { in chcr_ktls_save_keys() 85 (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; in chcr_ktls_save_keys() 130 crypto_info->cipher_type); in chcr_ktls_save_keys() 414 struct tls_crypto_info *crypto_info, in chcr_ktls_dev_add() argument 472 ret = chcr_ktls_save_keys(tx_info, crypto_info, direction); in chcr_ktls_dev_add()
|
| /linux/include/net/ |
| A D | tls.h | 272 struct tls_crypto_info *crypto_info,
|
| /linux/drivers/net/ethernet/chelsio/cxgb4/ |
| A D | cxgb4_main.c | 6438 struct tls_crypto_info *crypto_info, in cxgb4_ktls_dev_add() argument 6455 crypto_info, in cxgb4_ktls_dev_add()
|