base58.h 5.19 KB
Newer Older
s_nakamoto's avatar
s_nakamoto committed
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
super3's avatar
super3 committed
2
// Copyright (c) 2009-2013 The Bitcoin developers
s_nakamoto's avatar
s_nakamoto committed
3
// Distributed under the MIT/X11 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

//
// 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.
12
// - Double-clicking selects the whole number as one word if it's all alphanumeric.
s_nakamoto's avatar
s_nakamoto committed
13
//
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 "script.h"
20
21
22
23

#include <string>
#include <vector>

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

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

rxl's avatar
rxl committed
35
/**
36
37
38
 * 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
39
 */
40
bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet);
s_nakamoto's avatar
s_nakamoto committed
41

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

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

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

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

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

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

78
79
80
    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
81

82
public:
83
84
85
86
    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;
87
88
89
90
91
92
93
94

    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; }
};

95
/** base58-encoded Bitcoin addresses.
96
97
98
99
100
 * 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.
 */
101
class CBitcoinAddress : public CBase58Data {
102
public:
103
104
105
106
107
108
109
110
111
112
113
114
115
    bool Set(const CKeyID &id);
    bool Set(const CScriptID &id);
    bool Set(const CTxDestination &dest);
    bool IsValid() const;

    CBitcoinAddress() {}
    CBitcoinAddress(const CTxDestination &dest) { Set(dest); }
    CBitcoinAddress(const std::string& strAddress) { SetString(strAddress); }
    CBitcoinAddress(const char* pszAddress) { SetString(pszAddress); }

    CTxDestination Get() const;
    bool GetKeyID(CKeyID &keyID) const;
    bool IsScript() const;
116
117
};

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

    CBitcoinSecret(const CKey& vchSecret) { SetKey(vchSecret); }
    CBitcoinSecret() {}
132
133
};

134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
template<typename K, int Size, CChainParams::Base58Type Type> class CBitcoinExtKeyBase : public CBase58Data
{
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;
    }

    CBitcoinExtKeyBase(const K &key) {
        SetKey(key);
    }

    CBitcoinExtKeyBase() {}
};

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

159
#endif // BITCOIN_BASE58_H