diff options
author | Ulf Möller <ulf@openssl.org> | 1999-04-27 06:18:53 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-04-27 06:18:53 +0200 |
commit | d02f751ce1d13183a0c0e5528ec89f76587ed989 (patch) | |
tree | 3ee5bb5030a36e5d5358d8a067b89232b0c6c15f /crypto/evp/e_xcbc_d.c | |
parent | New Configure option no-<cipher> (rsa, idea, rc5, ...). (diff) | |
download | openssl-d02f751ce1d13183a0c0e5528ec89f76587ed989.tar.xz openssl-d02f751ce1d13183a0c0e5528ec89f76587ed989.zip |
Message digest stuff.
Diffstat (limited to 'crypto/evp/e_xcbc_d.c')
-rw-r--r-- | crypto/evp/e_xcbc_d.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/evp/e_xcbc_d.c b/crypto/evp/e_xcbc_d.c index 01e15ae0ee..3238de021d 100644 --- a/crypto/evp/e_xcbc_d.c +++ b/crypto/evp/e_xcbc_d.c @@ -56,6 +56,7 @@ * [including the GNU Public Licence.] */ +#ifndef NO_DES #include <stdio.h> #include "cryptlib.h" #include <openssl/evp.h> @@ -106,3 +107,4 @@ static void desx_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, &(ctx->c.desx_cbc.outw[0]), ctx->encrypt); } +#endif |