summaryrefslogtreecommitdiff
path: root/cipher-aes.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-01-20 22:31:29 +1100
committerDamien Miller <djm@mindrot.org>2013-01-20 22:31:29 +1100
commitda5cc5d09a193f29d1a1e1c5a96e06980d240816 (patch)
tree02c48b4cc2843c6261ff65fb875dcc40f9aea030 /cipher-aes.c
parent13f5f768bc4861bff58074717fc19764ee347ac9 (diff)
- (djm) [cipher-aes.c cipher-ctr.c openbsd-compat/openssl-compat.h]
Move prototypes for replacement ciphers to openssl-compat.h; fix EVP prototypes for openssl-1.0.0-fips.
Diffstat (limited to 'cipher-aes.c')
-rw-r--r--cipher-aes.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/cipher-aes.c b/cipher-aes.c
index bfda6d2f2..07ec7aa5d 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -46,9 +46,6 @@ struct ssh_rijndael_ctx
46 u_char r_iv[RIJNDAEL_BLOCKSIZE]; 46 u_char r_iv[RIJNDAEL_BLOCKSIZE];
47}; 47};
48 48
49const EVP_CIPHER * evp_rijndael(void);
50void ssh_rijndael_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
51
52static int 49static int
53ssh_rijndael_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv, 50ssh_rijndael_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv,
54 int enc) 51 int enc)