base58.h 5.34 KB
Newer Older
s_nakamoto's avatar
s_nakamoto committed
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
3
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
Fordy's avatar
Fordy committed
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
s_nakamoto's avatar
s_nakamoto committed
5

6
7
8
9
10
11
12
13
/**
 * Why base-58 instead of standard base-64 encoding?
 * - Don't want 0OIl characters that look the same in some fonts and
 *      could be used to create visually identical looking account numbers.
 * - A string with non-alphanumeric characters is not as easily accepted as an account number.
 * - E-mail usually won't line-break if there's no punctuation to break at.
 * - Double-clicking selects the whole number as one word if it's all alphanumeric.
 */
14
15
#ifndef BITCOIN_BASE58_H
#define BITCOIN_BASE58_H
s_nakamoto's avatar
s_nakamoto committed
16

17
#include "chainparams.h"
18
#include "key.h"
19
#include "pubkey.h"
20
#include "script/script.h"
21
#include "script/standard.h"
22
#include "support/allocators/zeroafterfree.h"
23
24
25
26

#include <string>
#include <vector>

rxl's avatar
rxl committed
27
/**
28
29
 * Encode a byte sequence as a base58-encoded string.
 * pbegin and pend cannot be NULL, unless both are.
rxl's avatar
rxl committed
30
 */
31
std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend);
s_nakamoto's avatar
s_nakamoto committed
32

rxl's avatar
rxl committed
33
34
35
/**
 * Encode a byte vector as a base58-encoded string
 */
36
std::string EncodeBase58(const std::vector<unsigned char>& vch);
s_nakamoto's avatar
s_nakamoto committed
37

rxl's avatar
rxl committed
38
/**
39
40
41
 * Decode a base58-encoded string (psz) into a byte vector (vchRet).
 * return true if decoding is successful.
 * psz cannot be NULL.
rxl's avatar
rxl committed
42
 */
43
bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet);
s_nakamoto's avatar
s_nakamoto committed
44

rxl's avatar
rxl committed
45
/**
46
47
 * Decode a base58-encoded string (str) into a byte vector (vchRet).
 * return true if decoding is successful.
rxl's avatar
rxl committed
48
 */
49
bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet);
s_nakamoto's avatar
s_nakamoto committed
50

rxl's avatar
rxl committed
51
52
53
/**
 * Encode a byte vector into a base58-encoded string, including checksum
 */
54
std::string EncodeBase58Check(const std::vector<unsigned char>& vchIn);
s_nakamoto's avatar
s_nakamoto committed
55

rxl's avatar
rxl committed
56
57
58
59
/**
 * Decode a base58-encoded string (psz) that includes a checksum into a byte
 * vector (vchRet), return true if decoding is successful
 */
60
inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet);
s_nakamoto's avatar
s_nakamoto committed
61

rxl's avatar
rxl committed
62
63
64
65
/**
 * Decode a base58-encoded string (str) that includes a checksum into a byte
 * vector (vchRet), return true if decoding is successful
 */
66
inline bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet);
s_nakamoto's avatar
s_nakamoto committed
67

rxl's avatar
rxl committed
68
69
70
/**
 * Base class for all base58-encoded data
 */
71
class CBase58Data
s_nakamoto's avatar
s_nakamoto committed
72
{
73
protected:
74
    //! the version byte(s)
Pieter Wuille's avatar
Pieter Wuille committed
75
    std::vector<unsigned char> vchVersion;
Pieter Wuille's avatar
Pieter Wuille committed
76

77
    //! the actually encoded data
78
79
    typedef std::vector<unsigned char, zero_after_free_allocator<unsigned char> > vector_uchar;
    vector_uchar vchData;
s_nakamoto's avatar
s_nakamoto committed
80

81
82
83
    CBase58Data();
    void SetData(const std::vector<unsigned char> &vchVersionIn, const void* pdata, size_t nSize);
    void SetData(const std::vector<unsigned char> &vchVersionIn, const unsigned char *pbegin, const unsigned char *pend);
s_nakamoto's avatar
s_nakamoto committed
84

85
public:
86
87
88
89
    bool SetString(const char* psz, unsigned int nVersionBytes = 1);
    bool SetString(const std::string& str);
    std::string ToString() const;
    int CompareTo(const CBase58Data& b58) const;
90
91
92
93
94
95
96
97

    bool operator==(const CBase58Data& b58) const { return CompareTo(b58) == 0; }
    bool operator<=(const CBase58Data& b58) const { return CompareTo(b58) <= 0; }
    bool operator>=(const CBase58Data& b58) const { return CompareTo(b58) >= 0; }
    bool operator< (const CBase58Data& b58) const { return CompareTo(b58) <  0; }
    bool operator> (const CBase58Data& b58) const { return CompareTo(b58) >  0; }
};

Infernoman's avatar
Infernoman committed
98
/** base58-encoded Crown addresses.
99
100
101
102
103
 * Public-key-hash-addresses have version 0 (or 111 testnet).
 * The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
 * Script-hash-addresses have version 5 (or 196 testnet).
 * The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
 */
104
class CBitcoinAddress : public CBase58Data {
105
public:
106
107
108
109
    bool Set(const CKeyID &id);
    bool Set(const CScriptID &id);
    bool Set(const CTxDestination &dest);
    bool IsValid() const;
110
    bool IsValid(const CChainParams &params) const;
111

112
113
114
115
    CBitcoinAddress() {}
    CBitcoinAddress(const CTxDestination &dest) { Set(dest); }
    CBitcoinAddress(const std::string& strAddress) { SetString(strAddress); }
    CBitcoinAddress(const char* pszAddress) { SetString(pszAddress); }
116
117
118
119

    CTxDestination Get() const;
    bool GetKeyID(CKeyID &keyID) const;
    bool IsScript() const;
120
121
};

rxl's avatar
rxl committed
122
123
124
/**
 * A base58-encoded secret key
 */
125
class CBitcoinSecret : public CBase58Data
126
127
{
public:
128
129
130
131
132
133
    void SetKey(const CKey& vchSecret);
    CKey GetKey();
    bool IsValid() const;
    bool SetString(const char* pszSecret);
    bool SetString(const std::string& strSecret);

134
135
    CBitcoinSecret(const CKey& vchSecret) { SetKey(vchSecret); }
    CBitcoinSecret() {}
136
137
};

138
template<typename K, int Size, CChainParams::Base58Type Type> class CBitcoinExtKeyBase : public CBase58Data
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
public:
    void SetKey(const K &key) {
        unsigned char vch[Size];
        key.Encode(vch);
        SetData(Params().Base58Prefix(Type), vch, vch+Size);
    }

    K GetKey() {
        K ret;
        ret.Decode(&vchData[0], &vchData[Size]);
        return ret;
    }

153
    CBitcoinExtKeyBase(const K &key) {
154
155
156
        SetKey(key);
    }

157
    CBitcoinExtKeyBase() {}
158
159
};

160
161
typedef CBitcoinExtKeyBase<CExtKey, 74, CChainParams::EXT_SECRET_KEY> CBitcoinExtKey;
typedef CBitcoinExtKeyBase<CExtPubKey, 74, CChainParams::EXT_PUBLIC_KEY> CBitcoinExtPubKey;
162

163
#endif // BITCOIN_BASE58_H