diff options
author | Richard Levitte <levitte@openssl.org> | 2000-10-14 22:09:54 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-10-14 22:09:54 +0200 |
commit | 3ab56511120b7a67ed4e4dbac9d60e5d1520a453 (patch) | |
tree | 399ad045f57838ba50a40a57f9834d7a98f6af4a /apps/enc.c | |
parent | Even when you don't want to create shared libraries, it's a good idea (diff) | |
download | openssl-3ab56511120b7a67ed4e4dbac9d60e5d1520a453.tar.xz openssl-3ab56511120b7a67ed4e4dbac9d60e5d1520a453.zip |
The experimental Rijndael code moved to the main trunk.
make update done.
Diffstat (limited to 'apps/enc.c')
-rw-r--r-- | apps/enc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/enc.c b/apps/enc.c index 2101b4cc64..14b82d5ba1 100644 --- a/apps/enc.c +++ b/apps/enc.c @@ -308,6 +308,11 @@ bad: LN_rc5_cfb64, LN_rc5_ofb64); BIO_printf(bio_err," -%-4s (%s)\n","rc5", LN_rc5_cbc); #endif +#ifndef NO_RIJNDAEL + BIO_printf(bio_err," -%-12s -%-12s -%-12s -%-12s\n", + LN_rijndael_ecb_k128_b128,"","","",""); +#endif + goto end; } argc--; |