From f2922422d972644e67d1ca989e40cd0100ecb06d Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Thu, 6 Jun 2019 13:28:14 +0000 Subject: ipsec: remove the set_key API there's no use case to just change the key of an SA. instead the SA should be renegociated and the new SA applied to the existing SPD entry or tunnel. the set_key functions were untested. Type: refactor Change-Id: Ib096eebaafb20be7b5501ece5a24aea038373002 Signed-off-by: Neale Ranns --- src/vnet/crypto/crypto.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/vnet/crypto/crypto.h') diff --git a/src/vnet/crypto/crypto.h b/src/vnet/crypto/crypto.h index 7267e06aaa0..89af8535c52 100644 --- a/src/vnet/crypto/crypto.h +++ b/src/vnet/crypto/crypto.h @@ -209,8 +209,6 @@ int vnet_crypto_set_handler (char *ops_handler_name, char *engine); u32 vnet_crypto_key_add (vlib_main_t * vm, vnet_crypto_alg_t alg, u8 * data, u16 length); void vnet_crypto_key_del (vlib_main_t * vm, vnet_crypto_key_index_t index); -void vnet_crypto_key_modify (vlib_main_t * vm, vnet_crypto_key_index_t index, - vnet_crypto_alg_t alg, u8 * data, u16 len); format_function_t format_vnet_crypto_alg; format_function_t format_vnet_crypto_engine; -- cgit 1.2.3-korg