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)
downloadopenssh-git-da5cc5d09a193f29d1a1e1c5a96e06980d240816.tar.gz
- (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 bfda6d2f..07ec7aa5 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -46,9 +46,6 @@ struct ssh_rijndael_ctx
u_char r_iv[RIJNDAEL_BLOCKSIZE];
};
-const EVP_CIPHER * evp_rijndael(void);
-void ssh_rijndael_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
-
static int
ssh_rijndael_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv,
int enc)