Skip to content

Commit

Permalink
Attempt to allow OpenSSL on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
thomwiggers committed Feb 15, 2021
1 parent f4c1ef9 commit f2d2644
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/common/rand/rand_nist.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ static AES256_CTR_DRBG_struct DRBG_ctx;
static void AES256_CTR_DRBG_Update(unsigned char *provided_data, unsigned char *Key, unsigned char *V);

#ifdef OQS_USE_OPENSSL
# if defined(_MSC_VER)
__declspec(noreturn)
# else
__attribute__((noreturn))
# endif
static void handleErrors(void) {
ERR_print_errors_fp(stderr);
abort();
Expand Down

0 comments on commit f2d2644

Please sign in to comment.