From: Gavin Andresen Date: Thu, 12 Jan 2012 15:33:21 +0000 (-0500) Subject: Remove base58 encoding from validateaddress/addmultisigaddress X-Git-Tag: v0.4.0-unstable~129^2~268 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=9e8818ec9d01b3cf9e4aa601a96785c4fdc3f9b7 Remove base58 encoding from validateaddress/addmultisigaddress base58-encoding of full/compressed public keys needs more thought; it probably makes sense to define a base58 encoding that includes a version byte and a checksum. So just support hex and bitcoin-address encodings for now. --- diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index c1e4df4..db595cb 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -994,7 +994,7 @@ Value addmultisigaddress(const Array& params, bool fHelp) { string msg = "addmultisigaddress <'[\"key\",\"key\"]'> [account]\n" "Add a nrequired-to-sign multisignature address to the wallet\"\n" - "each key is a bitcoin address, hex or base58 public key\n" + "each key is a bitcoin address or hex-encoded public key\n" "If [account] is specified, assign address to [account]."; throw runtime_error(msg); } @@ -1028,32 +1028,19 @@ Value addmultisigaddress(const Array& params, bool fHelp) if (!pwalletMain->GetKey(address, pubkeys[i])) throw runtime_error( strprintf("no full public key for address %s",ks.c_str())); - continue; } // Case 2: hex public key - if (IsHex(ks)) + else if (IsHex(ks)) { vector vchPubKey = ParseHex(ks); if (vchPubKey.empty() || !pubkeys[i].SetPubKey(vchPubKey)) throw runtime_error(" Invalid public key: "+ks); - // There is approximately a zero percent chance a random - // public key encoded as base58 will consist entirely - // of hex characters. - continue; } - // Case 3: base58-encoded public key + else { - vector vchPubKey; - if (!DecodeBase58(ks, vchPubKey)) - throw runtime_error("base58 decoding failed: "+ks); - if (vchPubKey.size() < 33) // 33 is size of a compressed public key - throw runtime_error("decoded public key too short: "+ks); - if (pubkeys[i].SetPubKey(vchPubKey)) - continue; + throw runtime_error(" Invalid public key: "+ks); } - - throw runtime_error(" Invalid public key: "+ks); } // Construct using pay-to-script-hash: @@ -1739,8 +1726,6 @@ Value validateaddress(const Array& params, bool fHelp) std::vector vchPubKey; pwalletMain->GetPubKey(address, vchPubKey); ret.push_back(Pair("pubkey", HexStr(vchPubKey))); - std::string strPubKey(vchPubKey.begin(), vchPubKey.end()); - ret.push_back(Pair("pubkey58", EncodeBase58(vchPubKey))); CKey key; key.SetPubKey(vchPubKey); ret.push_back(Pair("iscompressed", key.IsCompressed()));