Added LibreSSL as an alternative to OpenSSL. Needs more testing! (0.38.16)
This commit is contained in:
parent
d1d4adbf2c
commit
3e0d47a268
35 changed files with 677 additions and 38 deletions
5
src/external/openssl.c
vendored
5
src/external/openssl.c
vendored
|
|
@ -15,6 +15,11 @@
|
|||
|
||||
#ifdef FUN_WITH_OPENSSL
|
||||
#include <openssl/evp.h>
|
||||
/* Always use EVP_MD_get_size; if headers don't declare it, provide a
|
||||
* forward declaration to allow linking against OpenSSL libcrypto. */
|
||||
#ifndef EVP_MD_get_size
|
||||
int EVP_MD_get_size(const EVP_MD *md);
|
||||
#endif
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue