diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2011-06-26 16:11:56 +0200 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-08-08 14:31:07 -0400 |
commit | fcedd45c3cd2085709155967545020e32e7de3c0 (patch) | |
tree | 7dafec6ab43c0e99a25dfb6207c71cc675423dc2 /src | |
parent | 4e5d88ce26b7829856e206107fd82e99d58b4211 (diff) |
Add missing includes to key.h
Diffstat (limited to 'src')
-rw-r--r-- | src/key.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -4,10 +4,17 @@ #ifndef BITCOIN_KEY_H #define BITCOIN_KEY_H +#include <stdexcept> +#include <vector> + #include <openssl/ec.h> #include <openssl/ecdsa.h> #include <openssl/obj_mac.h> +#include "serialize.h" +#include "uint256.h" +#include "base58.h" + // secp160k1 // const unsigned int PRIVATE_KEY_SIZE = 192; // const unsigned int PUBLIC_KEY_SIZE = 41; |