mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-03 00:00:24 -04:00
save-keys: Fix Wireshark algorithm identifier for 3DES
Wireshark has shown the following error dialogue because the identifier
was incorrect [1]:
Error loading table 'ESP SAs': esp_sa:18: invalid value: TripleDes-CBC [RFC2451]
[1] 3757f42e5f/epan/dissectors/packet-ipsec.c (L203)
Closes strongswan/strongswan#2013
This commit is contained in:
parent
9acd90575a
commit
c3f8642e72
@ -213,7 +213,7 @@ static inline void ike_names(proposal_t *proposal, const char **enc,
|
||||
*/
|
||||
static algo_map_t esp_encr[] = {
|
||||
{ ENCR_NULL, -1, "NULL" },
|
||||
{ ENCR_3DES, -1, "TripleDes-CBC [RFC2451]" },
|
||||
{ ENCR_3DES, -1, "TripleDES-CBC [RFC2451]" },
|
||||
{ ENCR_AES_CBC, -1, "AES-CBC [RFC3602]" },
|
||||
{ ENCR_AES_CTR, -1, "AES-CTR [RFC3686]" },
|
||||
{ ENCR_DES, -1, "DES-CBC [RFC2405]" },
|
||||
|
Loading…
x
Reference in New Issue
Block a user