From 3ba5d1cf2eb6ef28ac5f6d9f3d28020d00c5be50 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Mon, 30 Jul 2001 17:46:22 +0000 Subject: Make EVPs allocate context memory, thus making them extensible. Rationalise DES's keyschedules. I know these two should be separate, and I'll back out the DES changes if they are deemed to be an error. Note that there is a memory leak lurking in SSL somewhere in this version. --- crypto/des/enc_read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/des/enc_read.c') diff --git a/crypto/des/enc_read.c b/crypto/des/enc_read.c index e8a5763abf..5881caf3d5 100644 --- a/crypto/des/enc_read.c +++ b/crypto/des/enc_read.c @@ -84,7 +84,7 @@ OPENSSL_IMPLEMENT_GLOBAL(int,des_rw_mode)=DES_PCBC_MODE; */ -int des_enc_read(int fd, void *buf, int len, des_key_schedule sched, +int des_enc_read(int fd, void *buf, int len, des_key_schedule *sched, des_cblock *iv) { /* data to be unencrypted */ -- cgit v1.2.3