diff options
author | Rich Salz <rsalz@akamai.com> | 2016-01-28 16:13:21 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-01-30 22:54:35 +0100 |
commit | 94af0cd7f3a8130bbc23feb743b176a74eec7e10 (patch) | |
tree | bcbcf406c23c84a27b73c90392830299720f6fbc /test/exptest.c | |
parent | GH102: Add volatile to CRYPTO_memcmp (diff) | |
download | openssl-94af0cd7f3a8130bbc23feb743b176a74eec7e10.tar.xz openssl-94af0cd7f3a8130bbc23feb743b176a74eec7e10.zip |
Move more BN internals to bn_lcl.h
There was an unused macro in ssl_locl.h that used an internal
type, so I removed it.
Move bio_st from bio.h to ossl_type.h
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'test/exptest.c')
-rw-r--r-- | test/exptest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/exptest.c b/test/exptest.c index 7a155f957d..0acdacced7 100644 --- a/test/exptest.c +++ b/test/exptest.c @@ -66,7 +66,7 @@ #include <openssl/rand.h> #include <openssl/err.h> -#define NUM_BITS (BN_BITS*2) +#define NUM_BITS (BN_BITS2 * 4) static const char rnd_seed[] = "string to make the random number generator think it has entropy"; |