diff options
Diffstat (limited to 'src/key.cpp')
-rw-r--r-- | src/key.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/key.cpp b/src/key.cpp index 996539dca5..2fd68fa56b 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -2,13 +2,12 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#include "key.h" + #include <openssl/bn.h> #include <openssl/ecdsa.h> -#include <openssl/rand.h> #include <openssl/obj_mac.h> - -#include "key.h" - +#include <openssl/rand.h> // anonymous namespace with local implementation code (OpenSSL interaction) namespace { |