diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2013-07-29 18:28:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-30 08:53:24 -0700 |
commit | 3ef2bcad02efd6219f4ce599754c15e63b6af0dc (patch) | |
tree | 3f32ae410a875c7e3c07558cd0307da1cdbd108f /git-compat-util.h | |
parent | be4c828b761a7c65edcff75b008051b6d027e64a (diff) | |
download | git-3ef2bcad02efd6219f4ce599754c15e63b6af0dc.tar.gz |
imap-send: use Apple's Security framework for base64 encoding
Use Apple's supported functions for base64 encoding instead
of the deprecated OpenSSL functions.
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index e955bb5e8b..6ebb02967d 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -127,6 +127,17 @@ #else #include <poll.h> #endif + +#ifndef NO_OPENSSL +#ifdef APPLE_COMMON_CRYPTO +#include "compat/apple-common-crypto.h" +#else +#include <openssl/evp.h> +#include <openssl/hmac.h> +#endif /* APPLE_COMMON_CRYPTO */ +#include <openssl/x509v3.h> +#endif /* NO_OPENSSL */ + #if defined(__MINGW32__) /* pull in Windows compatibility stuff */ #include "compat/mingw.h" |