diff options
Diffstat (limited to 'openbsd-compat/openssl-compat.h')
-rw-r--r-- | openbsd-compat/openssl-compat.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openbsd-compat/openssl-compat.h b/openbsd-compat/openssl-compat.h index c5fc24eb4..a151eff38 100644 --- a/openbsd-compat/openssl-compat.h +++ b/openbsd-compat/openssl-compat.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: openssl-compat.h,v 1.19 2011/05/10 01:13:38 dtucker Exp $ */ | 1 | /* $Id: openssl-compat.h,v 1.20 2012/01/17 03:03:39 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au> | 4 | * Copyright (c) 2005 Darren Tucker <dtucker@zip.com.au> |
@@ -130,5 +130,10 @@ int ssh_EVP_CipherInit(EVP_CIPHER_CTX *, const EVP_CIPHER *, unsigned char *, | |||
130 | int ssh_EVP_Cipher(EVP_CIPHER_CTX *, char *, char *, int); | 130 | int ssh_EVP_Cipher(EVP_CIPHER_CTX *, char *, char *, int); |
131 | int ssh_EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *); | 131 | int ssh_EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *); |
132 | void ssh_OpenSSL_add_all_algorithms(void); | 132 | void ssh_OpenSSL_add_all_algorithms(void); |
133 | |||
134 | # ifndef HAVE_HMAC_CTX_INIT | ||
135 | # define HMAC_CTX_init(a) | ||
136 | # endif | ||
137 | |||
133 | #endif /* SSH_DONT_OVERLOAD_OPENSSL_FUNCS */ | 138 | #endif /* SSH_DONT_OVERLOAD_OPENSSL_FUNCS */ |
134 | 139 | ||