aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/rijndael.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/rijndael.c')
-rw-r--r--cipher/rijndael.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/rijndael.c b/cipher/rijndael.c
index 50079cb75..cd29beaad 100644
--- a/cipher/rijndael.c
+++ b/cipher/rijndael.c
@@ -2151,11 +2151,11 @@ rijndael_get_info (int algo, size_t *keylen,
= rijndael_decrypt;
if( algo == 7 )
- return "RIJNDAEL";
+ return "AES";
if (algo == 8)
- return "RIJNDAEL192";
+ return "AES192";
if (algo == 9)
- return "RIJNDAEL256";
+ return "AES256";
return NULL;
}