summaryrefslogtreecommitdiffstats
path: root/crypto/des
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-05-20 11:30:27 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-05-20 11:30:27 +0000
commit781f0a9bb5a32e2f86233d956e036d2b6a973886 (patch)
treed90729b8f2486cb9d1b695e98b9df3f23e318999 /crypto/des
parent3de5a7745f3dc2c559602d67c30cd219a984104a (diff)
Fix from stable branch.
Diffstat (limited to 'crypto/des')
-rw-r--r--crypto/des/des_old.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/des/des_old.c b/crypto/des/des_old.c
index 7e4cd7180d..7c33ed7a93 100644
--- a/crypto/des/des_old.c
+++ b/crypto/des/des_old.c
@@ -169,11 +169,13 @@ void _ossl_old_des_ede3_ofb64_encrypt(unsigned char *in, unsigned char *out,
(DES_key_schedule *)ks3, ivec, num);
}
+#if 0 /* broken code, preserved just in case anyone specifically looks for this */
void _ossl_old_des_xwhite_in2out(_ossl_old_des_cblock (*des_key), _ossl_old_des_cblock (*in_white),
_ossl_old_des_cblock (*out_white))
{
DES_xwhite_in2out(des_key, in_white, out_white);
}
+#endif
int _ossl_old_des_enc_read(int fd,char *buf,int len,des_key_schedule sched,
_ossl_old_des_cblock *iv)