diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-19 09:29:23 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-19 10:02:24 +0200 |
commit | 4491d66692a5737a94647b58f452a8f8df66809d (patch) | |
tree | 03a41646171f4ac4d0e0ed23a672542e66c19370 /src/pluto/constants.c | |
parent | 3bf5727acb817247c9e7d264ff5f65f671232818 (diff) | |
download | strongswan-4491d66692a5737a94647b58f452a8f8df66809d.tar.bz2 strongswan-4491d66692a5737a94647b58f452a8f8df66809d.tar.xz |
add _CBC to all encryption algorithms in CBC mode
Diffstat (limited to 'src/pluto/constants.c')
-rw-r--r-- | src/pluto/constants.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pluto/constants.c b/src/pluto/constants.c index 910842dc6..acf9d763b 100644 --- a/src/pluto/constants.c +++ b/src/pluto/constants.c @@ -374,12 +374,12 @@ enum_names ah_transformid_names = static const char *const esp_transform_name[] = { "DES_IV64", - "DES", - "3DES", - "RC5", - "IDEA", - "CAST", - "BLOWFISH", + "DES_CBC", + "3DES_CBC", + "RC5_CBC", + "IDEA_CBC", + "CAST_CBC", + "BLOWFISH_CBC", "3IDEA", "DES_IV32", "RC4", |