summaryrefslogtreecommitdiffstats
path: root/demos/maurice/example1.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/maurice/example1.c')
-rw-r--r--demos/maurice/example1.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/demos/maurice/example1.c b/demos/maurice/example1.c
index 4890b69ce5..da2c6d31c5 100644
--- a/demos/maurice/example1.c
+++ b/demos/maurice/example1.c
@@ -126,7 +126,7 @@ void main_encrypt(void)
void main_decrypt(void)
{
- char buf[512];
+ char buf[520];
char ebuf[512];
unsigned int buflen;
EVP_CIPHER_CTX ectx;
@@ -164,7 +164,6 @@ void main_decrypt(void)
read(STDIN, encryptKey, ekeylen);
read(STDIN, iv, sizeof(iv));
-
EVP_OpenInit(&ectx,
EVP_des_ede3_cbc(),
encryptKey,
@@ -185,7 +184,6 @@ void main_decrypt(void)
}
EVP_OpenUpdate(&ectx, buf, &buflen, ebuf, readlen);
-
write(STDOUT, buf, buflen);
}