diff options
author | Sabrina Dubroca <sd@queasysnail.net> | 2023-10-09 23:50:44 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-10-13 13:26:09 +0300 |
commit | bee6b7b30706e7693d91cb28c8ff3cb69e094f65 (patch) | |
tree | f471e5c0e1c6e578a24e014ede929e626dcd3b34 /include/net/tls.h | |
parent | 6d5029e54700b2427581513c533232b02ce05043 (diff) | |
download | linux-bee6b7b30706e7693d91cb28c8ff3cb69e094f65.tar.xz |
tls: rename MAX_IV_SIZE to TLS_MAX_IV_SIZE
It's defined in include/net/tls.h, avoid using an overly generic name.
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tls.h')
-rw-r--r-- | include/net/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tls.h b/include/net/tls.h index f3f22b08af26..5200ce27db91 100644 --- a/include/net/tls.h +++ b/include/net/tls.h @@ -61,7 +61,7 @@ struct tls_rec; #define TLS_AAD_SPACE_SIZE 13 -#define MAX_IV_SIZE 16 +#define TLS_MAX_IV_SIZE 16 #define TLS_TAG_SIZE 16 #define TLS_MAX_REC_SEQ_SIZE 8 #define TLS_MAX_AAD_SIZE TLS_AAD_SPACE_SIZE |