From f5011cd5ddfd0eabe359d7013747823c6bd4ed3f Mon Sep 17 00:00:00 2001 From: Mahdi Varasteh Date: Tue, 12 Sep 2023 15:09:44 +0330 Subject: [ospfd]: add support for RFC 5709 HMAC-SHA Auth This patch includes: * Implementation of RFC 5709 support in OSPF. Using openssl library and FRR key-chain, one can use SHA1, SHA256, SHA384, SHA512 and keyed-MD5( backward compatibility with RFC 2328) HMAC algs. * Updating documentation of OSPF * add topotests for new HMAC algorithms Signed-off-by: Mahdi Varasteh --- ospfd/ospf_errors.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ospfd/ospf_errors.c') diff --git a/ospfd/ospf_errors.c b/ospfd/ospf_errors.c index 16aa3ab526..cf58c6ad8b 100644 --- a/ospfd/ospf_errors.c +++ b/ospfd/ospf_errors.c @@ -19,9 +19,9 @@ static struct log_ref ferr_ospf_warn[] = { .suggestion = "Do not use this particular set command for an ospf route-map", }, { - .code = EC_OSPF_MD5, - .title = "OSPF has noticed a MD5 issue", - .description = "Something has gone wrong with the calculation of the MD5 data", + .code = EC_OSPF_AUTH, + .title = "OSPF has noticed an authentication issue", + .description = "Something has gone wrong with the calculation of the authentication data", .suggestion = "Ensure your key is correct, gather log data from this side as well as peer and open an Issue", }, { -- cgit v1.2.3