diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2020-06-04 22:58:37 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2020-06-04 22:58:37 +0000 |
| commit | 00a4311adc197c3518f5d60c69e00c4e80d065fd (patch) | |
| tree | e98ea913365a77514ce06b11eb40d6bb00127ede /lib/libipsec | |
| parent | 82785a3cc8034e10afdb59791699449f614726d2 (diff) | |
Refer to AES-CBC as "aes-cbc" rather than "rijndael-cbc" for IPsec.
At this point, AES is the more common name for Rijndael128. setkey(8)
will still accept the old name, and old constants remain for
compatiblity.
Reviewed by: cem, bcr (manpages)
MFC after: 2 weeks
Sponsored by: Chelsio Communications
Differential Revision: https://reviews.freebsd.org/D24964
Notes
svn path=/head/; revision=361810
Diffstat (limited to 'lib/libipsec')
| -rw-r--r-- | lib/libipsec/pfkey_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libipsec/pfkey_dump.c b/lib/libipsec/pfkey_dump.c index a002bc459038..365f0ef833af 100644 --- a/lib/libipsec/pfkey_dump.c +++ b/lib/libipsec/pfkey_dump.c @@ -159,8 +159,8 @@ static struct val2str str_alg_enc[] = { #ifdef SADB_X_EALG_RC5CBC { SADB_X_EALG_RC5CBC, "rc5-cbc", }, #endif -#ifdef SADB_X_EALG_RIJNDAELCBC - { SADB_X_EALG_RIJNDAELCBC, "rijndael-cbc", }, +#ifdef SADB_X_EALG_AESCBC + { SADB_X_EALG_AESCBC, "aes-cbc", }, #endif #ifdef SADB_X_EALG_TWOFISHCBC { SADB_X_EALG_TWOFISHCBC, "twofish-cbc", }, |
