diff options
author | 2014-10-22 13:18:16 +0000 | |
---|---|---|
committer | 2014-10-22 13:18:16 +0000 | |
commit | e4595d04badeeb9a76e22ceda26b990d2c82f96f (patch) | |
tree | cc589e85f1df44d63f0fdcd0f4ba475a0b4f94d5 | |
parent | Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes(). (diff) | |
download | wireguard-openbsd-e4595d04badeeb9a76e22ceda26b990d2c82f96f.tar.xz wireguard-openbsd-e4595d04badeeb9a76e22ceda26b990d2c82f96f.zip |
None of these need <openssl/rand.h>
-rw-r--r-- | regress/lib/libcrypto/bn/general/bntest.c | 1 | ||||
-rw-r--r-- | regress/lib/libcrypto/dh/dhtest.c | 1 | ||||
-rw-r--r-- | regress/lib/libcrypto/dsa/dsatest.c | 1 | ||||
-rw-r--r-- | regress/lib/libcrypto/ec/ectest.c | 1 | ||||
-rw-r--r-- | regress/lib/libcrypto/ecdh/ecdhtest.c | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/regress/lib/libcrypto/bn/general/bntest.c b/regress/lib/libcrypto/bn/general/bntest.c index 7a902b823f8..a3206aba8c9 100644 --- a/regress/lib/libcrypto/bn/general/bntest.c +++ b/regress/lib/libcrypto/bn/general/bntest.c @@ -81,7 +81,6 @@ #include <openssl/bio.h> #include <openssl/bn.h> -#include <openssl/rand.h> #include <openssl/x509.h> #include <openssl/err.h> diff --git a/regress/lib/libcrypto/dh/dhtest.c b/regress/lib/libcrypto/dh/dhtest.c index 9851c4f0c61..f1ddc5ccf5d 100644 --- a/regress/lib/libcrypto/dh/dhtest.c +++ b/regress/lib/libcrypto/dh/dhtest.c @@ -69,7 +69,6 @@ #include <openssl/crypto.h> #include <openssl/bio.h> #include <openssl/bn.h> -#include <openssl/rand.h> #include <openssl/err.h> #include <openssl/dh.h> diff --git a/regress/lib/libcrypto/dsa/dsatest.c b/regress/lib/libcrypto/dsa/dsatest.c index dcab96424c9..1fb929a6895 100644 --- a/regress/lib/libcrypto/dsa/dsatest.c +++ b/regress/lib/libcrypto/dsa/dsatest.c @@ -69,7 +69,6 @@ #include <sys/stat.h> #include <openssl/crypto.h> -#include <openssl/rand.h> #include <openssl/bio.h> #include <openssl/err.h> #include <openssl/bn.h> diff --git a/regress/lib/libcrypto/ec/ectest.c b/regress/lib/libcrypto/ec/ectest.c index efb9a529efd..6199e88f531 100644 --- a/regress/lib/libcrypto/ec/ectest.c +++ b/regress/lib/libcrypto/ec/ectest.c @@ -81,7 +81,6 @@ #include <openssl/err.h> #include <openssl/obj_mac.h> #include <openssl/objects.h> -#include <openssl/rand.h> #include <openssl/bn.h> #include <openssl/opensslconf.h> diff --git a/regress/lib/libcrypto/ecdh/ecdhtest.c b/regress/lib/libcrypto/ecdh/ecdhtest.c index d6cb61d4609..427957f7093 100644 --- a/regress/lib/libcrypto/ecdh/ecdhtest.c +++ b/regress/lib/libcrypto/ecdh/ecdhtest.c @@ -75,7 +75,6 @@ #include <openssl/bio.h> #include <openssl/bn.h> #include <openssl/objects.h> -#include <openssl/rand.h> #include <openssl/sha.h> #include <openssl/err.h> |