diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-07-15 19:52:49 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-07-15 19:52:49 +0200 |
commit | c491b0def1ac7b468bc6ce3ceffc3493b102ca1d (patch) | |
tree | 42d3315ef11b4e66f455df12d1eb1cd37ac947c1 /cipher.c | |
parent | - itojun@cvs.openbsd.org 2002/07/12 13:29:09 (diff) | |
download | openssh-c491b0def1ac7b468bc6ce3ceffc3493b102ca1d.tar.xz openssh-c491b0def1ac7b468bc6ce3ceffc3493b102ca1d.zip |
- markus@cvs.openbsd.org 2002/07/12 15:50:17
[cipher.c]
EVP_CIPH_CUSTOM_IV for our own rijndael
Diffstat (limited to '')
-rw-r--r-- | cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher.c,v 1.60 2002/06/23 03:26:52 deraadt Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.61 2002/07/12 15:50:17 markus Exp $"); #include "xmalloc.h" #include "log.h" @@ -567,7 +567,7 @@ evp_rijndael(void) rijndal_cbc.do_cipher = ssh_rijndael_cbc; #ifndef SSH_OLD_EVP rijndal_cbc.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | - EVP_CIPH_ALWAYS_CALL_INIT; + EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV; #endif return (&rijndal_cbc); } |