summaryrefslogtreecommitdiffstats
path: root/cipher.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2012-12-13 08:25:07 +1100
committerDamien Miller <djm@mindrot.org>2012-12-13 08:25:07 +1100
commit13cbff1e009c2a1f786e5d84bf78099c70949bf0 (patch)
treeaaaabb467e972c0e011ef5cffd3ca0231fb236c9 /cipher.c
parent25a02b0c95e01bc331267a1db0f62d3cbd7a0897 (diff)
- (djm) [cipher.c] Fix missing prototype for compat code
Diffstat (limited to 'cipher.c')
-rw-r--r--cipher.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cipher.c b/cipher.c
index d15c226a..aae69c34 100644
--- a/cipher.c
+++ b/cipher.c
@@ -58,6 +58,7 @@ extern void ssh1_3des_iv(EVP_CIPHER_CTX *, int, u_char *, int);
#define EVP_aes_128_ctr evp_aes_128_ctr
#define EVP_aes_192_ctr evp_aes_128_ctr
#define EVP_aes_256_ctr evp_aes_128_ctr
+extern const EVP_CIPHER *evp_aes_128_ctr(void);
extern void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);
#endif