Merge branch 'master' of github.com:jedmccaleb/NewCoin

This commit is contained in:
Arthur Britto
2012-04-05 23:15:43 -07:00
6 changed files with 223 additions and 74 deletions

View File

@@ -11,15 +11,30 @@
#include "key.h" #include "key.h"
#define ECIES_KEY_HASH SHA256
#define ECIES_KEY_LENGTH (256/8)
#define ECIES_KEY_TYPE uint256
#define ECIES_ENC_ALGO EVP_aes_256_cbc()
#define ECIES_ENC_KEY_SIZE (256/8)
#define ECIES_ENC_BLK_SIZE (128/8)
#define ECIES_ENC_KEY_TYPE uint256
#define ECIES_ENC_IV_TYPE uint128
#define ECIES_HMAC_ALGO EVP_sha256()
#define ECIES_HMAC_SIZE (256/8)
#define ECIES_HMAC_TYPE uint256
static void* ecies_key_derivation(const void *input, size_t ilen, void *output, size_t *olen) static void* ecies_key_derivation(const void *input, size_t ilen, void *output, size_t *olen)
{ // This function must not be changed as it must be what ECDH_compute_key expects { // This function must not be changed as it must be what ECDH_compute_key expects
if (*olen < SHA512_DIGEST_LENGTH) if (*olen < ECIES_KEY_LENGTH)
{
assert(false);
return NULL; return NULL;
*olen = SHA512_DIGEST_LENGTH; }
return SHA512(static_cast<const unsigned char *>(input), ilen, static_cast<unsigned char *>(output)); *olen = ECIES_KEY_LENGTH;
return ECIES_KEY_HASH(static_cast<const unsigned char *>(input), ilen, static_cast<unsigned char *>(output));
} }
std::vector<unsigned char> CKey::getECIESSecret(CKey& otherKey) ECIES_KEY_TYPE CKey::getECIESSecret(CKey& otherKey)
{ // Retrieve a secret generated from an EC key pair. At least one private key must be known. { // Retrieve a secret generated from an EC key pair. At least one private key must be known.
if(!pkey || !otherKey.pkey) if(!pkey || !otherKey.pkey)
throw std::runtime_error("missing key"); throw std::runtime_error("missing key");
@@ -37,23 +52,25 @@ std::vector<unsigned char> CKey::getECIESSecret(CKey& otherKey)
} }
else throw std::runtime_error("no private key"); else throw std::runtime_error("no private key");
std::vector<unsigned char> ret(SHA512_DIGEST_LENGTH); ECIES_KEY_TYPE key;
if (ECDH_compute_key(&(ret.front()), SHA512_DIGEST_LENGTH, EC_KEY_get0_public_key(pubkey), if (ECDH_compute_key(key.begin(), ECIES_KEY_LENGTH, EC_KEY_get0_public_key(pubkey),
privkey, ecies_key_derivation) != SHA512_DIGEST_LENGTH) privkey, ecies_key_derivation) != ECIES_KEY_LENGTH)
throw std::runtime_error("ecdh key failed"); throw std::runtime_error("ecdh key failed");
return ret; return key;
} }
// Our ciphertext is all encrypted except the IV. The encrypted data decodes as follows: // Our ciphertext is all encrypted except the IV. The encrypted data decodes as follows:
// 1) 256-bits of SHA-512 HMAC of original plaintext // 1) IV (unencrypted)
// 2) Original plaintext // 2) Encrypted: HMAC of original plaintext
// 3) Encrypted: Original plaintext
// 4) Encrypted: Rest of block/padding
static uint256 makeHMAC(const std::vector<unsigned char>& secret, const std::vector<unsigned char> data) static ECIES_HMAC_TYPE makeHMAC(ECIES_KEY_TYPE secret, const std::vector<unsigned char> data)
{ {
HMAC_CTX ctx; HMAC_CTX ctx;
HMAC_CTX_init(&ctx); HMAC_CTX_init(&ctx);
if(HMAC_Init_ex(&ctx, &(secret.front()), secret.size(), EVP_sha512(), NULL) != 1) if(HMAC_Init_ex(&ctx, secret.begin(), ECIES_KEY_LENGTH, ECIES_HMAC_ALGO, NULL) != 1)
{ {
HMAC_CTX_cleanup(&ctx); HMAC_CTX_cleanup(&ctx);
throw std::runtime_error("init hmac"); throw std::runtime_error("init hmac");
@@ -67,50 +84,47 @@ static uint256 makeHMAC(const std::vector<unsigned char>& secret, const std::vec
unsigned int ml=EVP_MAX_MD_SIZE; unsigned int ml=EVP_MAX_MD_SIZE;
std::vector<unsigned char> hmac(ml); std::vector<unsigned char> hmac(ml);
if(!HMAC_Final(&ctx, &(hmac.front()), &ml) != 1) if(HMAC_Final(&ctx, &(hmac.front()), &ml) != 1)
{ {
HMAC_CTX_cleanup(&ctx); HMAC_CTX_cleanup(&ctx);
throw std::runtime_error("finalize hmac"); throw std::runtime_error("finalize hmac");
} }
assert((ml>=32) && (ml<=EVP_MAX_MD_SIZE));
uint256 ret; ECIES_HMAC_TYPE ret;
memcpy(ret.begin(), &(hmac.front()), 32); memcpy(ret.begin(), &(hmac.front()), ECIES_HMAC_SIZE);
return ret; return ret;
} }
std::vector<unsigned char> CKey::encryptECIES(CKey& otherKey, const std::vector<unsigned char>& plaintext) std::vector<unsigned char> CKey::encryptECIES(CKey& otherKey, const std::vector<unsigned char>& plaintext)
{ {
std::vector<unsigned char> secret=getECIESSecret(otherKey); ECIES_KEY_TYPE secret=getECIESSecret(otherKey);
ECIES_HMAC_TYPE hmac=makeHMAC(secret, plaintext);
uint256 hmac=makeHMAC(secret, plaintext); ECIES_ENC_IV_TYPE iv;
if(RAND_bytes(static_cast<unsigned char *>(iv.begin()), ECIES_ENC_BLK_SIZE) != 1)
uint128 iv;
if(RAND_bytes(static_cast<unsigned char *>(iv.begin()), 128/8) != 1)
throw std::runtime_error("insufficient entropy"); throw std::runtime_error("insufficient entropy");
EVP_CIPHER_CTX ctx; EVP_CIPHER_CTX ctx;
EVP_CIPHER_CTX_init(&ctx); EVP_CIPHER_CTX_init(&ctx);
if (EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, if (EVP_EncryptInit_ex(&ctx, ECIES_ENC_ALGO, NULL, secret.begin(), iv.begin()) != 1)
&(secret.front()), static_cast<unsigned char *>(iv.begin())) != 1)
{ {
EVP_CIPHER_CTX_cleanup(&ctx); EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error("init cipher ctx"); throw std::runtime_error("init cipher ctx");
} }
std::vector<unsigned char> out(plaintext.size() + (256/8) + (512/8) + 48, 0); std::vector<unsigned char> out(plaintext.size() + ECIES_HMAC_SIZE + ECIES_ENC_KEY_SIZE + ECIES_ENC_BLK_SIZE, 0);
int len=0, bytesWritten; int len=0, bytesWritten;
// output 256-bit IV // output IV
memcpy(&(out.front()), iv.begin(), 32); memcpy(&(out.front()), iv.begin(), ECIES_ENC_BLK_SIZE);
len=32; len=ECIES_ENC_BLK_SIZE;
// Encrypt/output 512-bit HMAC // Encrypt/output HMAC
bytesWritten=out.capacity()-len; bytesWritten=out.capacity()-len;
assert(bytesWritten>0); assert(bytesWritten>0);
if(EVP_EncryptUpdate(&ctx, &(out.front())+len, &bytesWritten, hmac.begin(), 64) < 0) if(EVP_EncryptUpdate(&ctx, &(out.front()) + len, &bytesWritten, hmac.begin(), ECIES_HMAC_SIZE) < 0)
{ {
EVP_CIPHER_CTX_cleanup(&ctx); EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error(""); throw std::runtime_error("");
@@ -120,7 +134,7 @@ std::vector<unsigned char> CKey::encryptECIES(CKey& otherKey, const std::vector<
// encrypt/output plaintext // encrypt/output plaintext
bytesWritten=out.capacity()-len; bytesWritten=out.capacity()-len;
assert(bytesWritten>0); assert(bytesWritten>0);
if(EVP_EncryptUpdate(&ctx, &(out.front())+len, &bytesWritten, &(plaintext.front()), plaintext.size()) < 0) if(EVP_EncryptUpdate(&ctx, &(out.front()) + len, &bytesWritten, &(plaintext.front()), plaintext.size()) < 0)
{ {
EVP_CIPHER_CTX_cleanup(&ctx); EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error(""); throw std::runtime_error("");
@@ -129,13 +143,16 @@ std::vector<unsigned char> CKey::encryptECIES(CKey& otherKey, const std::vector<
// finalize // finalize
bytesWritten=out.capacity()-len; bytesWritten=out.capacity()-len;
if(EVP_EncryptFinal_ex(&ctx, &(out.front())+len, &bytesWritten) < 0) if(EVP_EncryptFinal_ex(&ctx, &(out.front()) + len, &bytesWritten) < 0)
{ {
EVP_CIPHER_CTX_cleanup(&ctx); EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error(""); throw std::runtime_error("");
} }
len+=bytesWritten; len+=bytesWritten;
// Output contains: IV, encrypted HMAC, encrypted data, encrypted padding
assert(len <= (plaintext.size() + ECIES_HMAC_SIZE + (2 * ECIES_ENC_BLK_SIZE)));
assert(len >= (plaintext.size() + ECIES_HMAC_SIZE + ECIES_ENC_BLK_SIZE)); // IV, HMAC, data
out.resize(len); out.resize(len);
EVP_CIPHER_CTX_cleanup(&ctx); EVP_CIPHER_CTX_cleanup(&ctx);
return out; return out;
@@ -143,16 +160,95 @@ std::vector<unsigned char> CKey::encryptECIES(CKey& otherKey, const std::vector<
std::vector<unsigned char> CKey::decryptECIES(CKey& otherKey, const std::vector<unsigned char>& ciphertext) std::vector<unsigned char> CKey::decryptECIES(CKey& otherKey, const std::vector<unsigned char>& ciphertext)
{ {
std::vector<unsigned char> secret=getECIESSecret(otherKey); ECIES_KEY_TYPE secret=getECIESSecret(otherKey);
// 1) Decrypt // minimum ciphertext = IV + HMAC + 1 block
if(ciphertext.size() < ((2*ECIES_ENC_BLK_SIZE) + ECIES_HMAC_SIZE) )
throw std::runtime_error("ciphertext too short");
// 2) Extract length and plaintext // extract IV
ECIES_ENC_IV_TYPE iv;
memcpy(iv.begin(), &(ciphertext.front()), ECIES_ENC_BLK_SIZE);
// begin decrypting
EVP_CIPHER_CTX ctx;
EVP_CIPHER_CTX_init(&ctx);
if(EVP_DecryptInit_ex(&ctx, ECIES_ENC_ALGO, NULL, secret.begin(), iv.begin()) != 1)
{
EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error("unable to init cipher");
}
// 3) Compute HMAC // decrypt mac
ECIES_HMAC_TYPE hmac;
int outlen=ECIES_HMAC_SIZE;
if( (EVP_DecryptUpdate(&ctx, hmac.begin(), &outlen,
&(ciphertext.front()) + ECIES_ENC_BLK_SIZE, ECIES_HMAC_SIZE+1) != 1) || (outlen != ECIES_HMAC_SIZE) )
{
EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error("unable to extract hmac");
}
// 4) Verify // decrypt plaintext (after IV and encrypted mac)
std::vector<unsigned char> plaintext(ciphertext.size() - ECIES_HMAC_SIZE - ECIES_ENC_BLK_SIZE);
outlen=plaintext.size();
if(EVP_DecryptUpdate(&ctx, &(plaintext.front()), &outlen,
&(ciphertext.front())+ECIES_ENC_BLK_SIZE+ECIES_HMAC_SIZE+1,
ciphertext.size()-ECIES_ENC_BLK_SIZE-ECIES_HMAC_SIZE-1) != 1)
{
EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error("unable to extract plaintext");
}
int flen = 0;
if(EVP_DecryptFinal(&ctx, &(plaintext.front()) + outlen, &flen) != 1)
{
EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error("plaintext had bad padding");
}
plaintext.resize(flen + outlen);
if(hmac != makeHMAC(secret, plaintext))
{
EVP_CIPHER_CTX_cleanup(&ctx);
throw std::runtime_error("plaintext had bad hmac");
}
EVP_CIPHER_CTX_cleanup(&ctx);
return plaintext;
}
bool checkECIES(void)
{
CKey senderPriv, recipientPriv, senderPub, recipientPub;
senderPriv.MakeNewKey();
recipientPriv.MakeNewKey();
if(!senderPub.SetPubKey(senderPriv.GetPubKey()))
throw std::runtime_error("key error");
if(!recipientPub.SetPubKey(recipientPriv.GetPubKey()))
throw std::runtime_error("key error");
for(int i=0; i<30000; i++)
{
// generate message
std::vector<unsigned char> message(4096);
int msglen=i%3000;
if(RAND_bytes(static_cast<unsigned char *>(&message.front()), msglen) != 1)
throw std::runtime_error("insufficient entropy");
message.resize(msglen);
// encrypt message with sender's private key and recipient's public key
std::vector<unsigned char> ciphertext=senderPriv.encryptECIES(recipientPub, message);
// decrypt message with recipient's private key and sender's public key
std::vector<unsigned char> decrypt=recipientPriv.decryptECIES(senderPub, ciphertext);
if(decrypt != message) return false;
// std::cerr << "Msg(" << msglen << ") ok " << ciphertext.size() << std::endl;
}
return true;
} }
// vim:ts=4 // vim:ts=4

View File

@@ -61,6 +61,16 @@ std::string STUInt64::getText() const
return boost::lexical_cast<std::string>(value); return boost::lexical_cast<std::string>(value);
} }
STHash128* STHash128::construct(SerializerIterator& u, const char *name)
{
return new STHash128(name, u.get128());
}
std::string STHash128::getText() const
{
return value.GetHex();
}
STHash160* STHash160::construct(SerializerIterator& u, const char *name) STHash160* STHash160::construct(SerializerIterator& u, const char *name)
{ {
return new STHash160(name, u.get160()); return new STHash160(name, u.get160());

View File

@@ -14,10 +14,10 @@ enum SerializedTypeID
// standard types // standard types
STI_OBJECT=1, STI_UINT8=2, STI_UINT16=3, STI_UINT32=4, STI_UINT64=5, STI_OBJECT=1, STI_UINT8=2, STI_UINT16=3, STI_UINT32=4, STI_UINT64=5,
STI_HASH160=6, STI_HASH256=7, STI_VL=8, STI_TL=9, STI_HASH128=6, STI_HASH160=7, STI_HASH256=8, STI_VL=9, STI_TL=10,
// high level types // high level types
STI_ACCOUNT=10, STI_TRANSACTION=10 STI_ACCOUNT=100, STI_TRANSACTION=101
}; };
class SerializedType class SerializedType
@@ -144,6 +144,31 @@ public:
STUInt64& operator=(uint64 v) { value=v; return *this; } STUInt64& operator=(uint64 v) { value=v; return *this; }
}; };
class STHash128 : public SerializedType
{
protected:
uint128 value;
public:
STHash128(const uint128& v=uint128()) : value(v) { ; }
STHash128(const char *n, const uint128& v=uint128()) : SerializedType(n), value(v) { ; }
STHash128() { ; }
static STHash128* construct(SerializerIterator&, const char *name=NULL);
int getLength() const { return 20; }
SerializedTypeID getType() const { return STI_HASH128; }
STHash128* duplicate() const { return new STHash128(name, value); }
virtual std::string getText() const;
void add(Serializer& s) const { s.add128(value); }
const uint128& getValue() const { return value; }
void setValue(const uint128& v) { value=v; }
operator uint128() const { return value; }
STHash128& operator=(const uint128& v) { value=v; return *this; }
};
class STHash160 : public SerializedType class STHash160 : public SerializedType
{ {
protected: protected:

View File

@@ -99,25 +99,32 @@ bool Serializer::get64(uint64& o, int offset) const
return true; return true;
} }
bool Serializer::get128(uint128& o, int offset) const
{
if((offset+(128/8))>mData.size()) return false;
memcpy(o.begin(), &(mData.front())+offset, (128/8));
return true;
}
bool Serializer::get160(uint160& o, int offset) const bool Serializer::get160(uint160& o, int offset) const
{ {
if((offset+20)>mData.size()) return false; if((offset+(160/8))>mData.size()) return false;
memcpy(o.begin(), &(mData.front())+offset, 20); memcpy(o.begin(), &(mData.front())+offset, (160/8));
return true; return true;
} }
bool Serializer::get256(uint256& o, int offset) const bool Serializer::get256(uint256& o, int offset) const
{ {
if((offset+32)>mData.size()) return false; if((offset+(256/8))>mData.size()) return false;
memcpy(o.begin(), &(mData.front())+offset, 32); memcpy(o.begin(), &(mData.front())+offset, (256/8));
return true; return true;
} }
uint256 Serializer::get256(int offset) const uint256 Serializer::get256(int offset) const
{ {
uint256 ret; uint256 ret;
if((offset+32)>mData.size()) return ret; if((offset+(256/8))>mData.size()) return ret;
memcpy(&ret, &(mData.front())+offset, 32); memcpy(&ret, &(mData.front())+offset, (256/8));
return ret; return ret;
} }
@@ -403,7 +410,7 @@ bool Serializer::getTaggedList(std::vector<TaggedListItem>& list, int offset, in
return true; return true;
} }
std::vector<unsigned char> Serializer::encodeVL(int length) throw() std::vector<unsigned char> Serializer::encodeVL(int length)
{ {
unsigned char lenBytes[4]; unsigned char lenBytes[4];
if(length<=192) if(length<=192)
@@ -429,7 +436,7 @@ std::vector<unsigned char> Serializer::encodeVL(int length) throw()
else throw(std::overflow_error("lenlen")); else throw(std::overflow_error("lenlen"));
} }
int Serializer::encodeLengthLength(int length) throw() int Serializer::encodeLengthLength(int length)
{ {
if(length<0) throw(std::overflow_error("len<0")); if(length<0) throw(std::overflow_error("len<0"));
if(length<=192) return 1; if(length<=192) return 1;
@@ -438,7 +445,7 @@ int Serializer::encodeLengthLength(int length) throw()
throw(std::overflow_error("len>918644")); throw(std::overflow_error("len>918644"));
} }
int Serializer::decodeLengthLength(int b1) throw() int Serializer::decodeLengthLength(int b1)
{ {
if(b1<0) throw(std::overflow_error("b1<0")); if(b1<0) throw(std::overflow_error("b1<0"));
if(b1<=192) return 1; if(b1<=192) return 1;
@@ -447,21 +454,21 @@ int Serializer::decodeLengthLength(int b1) throw()
throw(std::overflow_error("b1>254")); throw(std::overflow_error("b1>254"));
} }
int Serializer::decodeVLLength(int b1) throw() int Serializer::decodeVLLength(int b1)
{ {
if(b1<0) throw(std::overflow_error("b1<0")); if(b1<0) throw(std::overflow_error("b1<0"));
if(b1>254) throw(std::overflow_error("b1>254")); if(b1>254) throw(std::overflow_error("b1>254"));
return b1; return b1;
} }
int Serializer::decodeVLLength(int b1, int b2) throw() int Serializer::decodeVLLength(int b1, int b2)
{ {
if(b1<193) throw(std::overflow_error("b1<193")); if(b1<193) throw(std::overflow_error("b1<193"));
if(b1>240) throw(std::overflow_error("b1>240")); if(b1>240) throw(std::overflow_error("b1>240"));
return 193+(b1-193)*256+b2; return 193+(b1-193)*256+b2;
} }
int Serializer::decodeVLLength(int b1, int b2, int b3) throw() int Serializer::decodeVLLength(int b1, int b2, int b3)
{ {
if(b1<241) throw(std::overflow_error("b1<241")); if(b1<241) throw(std::overflow_error("b1<241"));
if(b1>254) throw(std::overflow_error("b1>254")); if(b1>254) throw(std::overflow_error("b1>254"));
@@ -478,7 +485,7 @@ int SerializerIterator::getBytesLeft()
return mSerializer.getLength()-mPos; return mSerializer.getLength()-mPos;
} }
unsigned char SerializerIterator::get8() throw() unsigned char SerializerIterator::get8()
{ {
int val; int val;
if(!mSerializer.get8(val, mPos)) throw(0); if(!mSerializer.get8(val, mPos)) throw(0);
@@ -486,7 +493,7 @@ unsigned char SerializerIterator::get8() throw()
return val; return val;
} }
uint16 SerializerIterator::get16() throw() uint16 SerializerIterator::get16()
{ {
uint16 val; uint16 val;
if(!mSerializer.get16(val, mPos)) throw(0); if(!mSerializer.get16(val, mPos)) throw(0);
@@ -494,7 +501,7 @@ uint16 SerializerIterator::get16() throw()
return val; return val;
} }
uint32 SerializerIterator::get32() throw() uint32 SerializerIterator::get32()
{ {
uint32 val; uint32 val;
if(!mSerializer.get32(val, mPos)) throw(0); if(!mSerializer.get32(val, mPos)) throw(0);
@@ -502,7 +509,7 @@ uint32 SerializerIterator::get32() throw()
return val; return val;
} }
uint64 SerializerIterator::get64() throw() uint64 SerializerIterator::get64()
{ {
uint64 val; uint64 val;
if(!mSerializer.get64(val, mPos)) throw(0); if(!mSerializer.get64(val, mPos)) throw(0);
@@ -510,7 +517,15 @@ uint64 SerializerIterator::get64() throw()
return val; return val;
} }
uint160 SerializerIterator::get160() throw() uint128 SerializerIterator::get128()
{
uint128 val;
if(!mSerializer.get128(val, mPos)) throw(0);
mPos+=128/8;
return val;
}
uint160 SerializerIterator::get160()
{ {
uint160 val; uint160 val;
if(!mSerializer.get160(val, mPos)) throw(0); if(!mSerializer.get160(val, mPos)) throw(0);
@@ -518,7 +533,7 @@ uint160 SerializerIterator::get160() throw()
return val; return val;
} }
uint256 SerializerIterator::get256() throw() uint256 SerializerIterator::get256()
{ {
uint256 val; uint256 val;
if(!mSerializer.get256(val, mPos)) throw(0); if(!mSerializer.get256(val, mPos)) throw(0);
@@ -526,7 +541,7 @@ uint256 SerializerIterator::get256() throw()
return val; return val;
} }
std::vector<unsigned char> SerializerIterator::getVL() throw() std::vector<unsigned char> SerializerIterator::getVL()
{ {
int length; int length;
std::vector<unsigned char> vl; std::vector<unsigned char> vl;
@@ -535,7 +550,7 @@ std::vector<unsigned char> SerializerIterator::getVL() throw()
return vl; return vl;
} }
std::vector<TaggedListItem> SerializerIterator::getTaggedList() throw() std::vector<TaggedListItem> SerializerIterator::getTaggedList()
{ {
int length; int length;
std::vector<TaggedListItem> tl; std::vector<TaggedListItem> tl;

View File

@@ -49,6 +49,7 @@ class Serializer
bool get16(uint16&, int offset) const; bool get16(uint16&, int offset) const;
bool get32(uint32&, int offset) const; bool get32(uint32&, int offset) const;
bool get64(uint64&, int offset) const; bool get64(uint64&, int offset) const;
bool get128(uint128&, int offset) const;
bool get160(uint160&, int offset) const; bool get160(uint160&, int offset) const;
bool get256(uint256&, int offset) const; bool get256(uint256&, int offset) const;
uint256 get256(int offset) const; uint256 get256(int offset) const;
@@ -87,12 +88,12 @@ class Serializer
bool addSignature(CKey& rkey); bool addSignature(CKey& rkey);
// low-level VL length encode/decode functions // low-level VL length encode/decode functions
static std::vector<unsigned char> encodeVL(int length) throw(); static std::vector<unsigned char> encodeVL(int length);
static int encodeLengthLength(int length) throw(); // length to encode length static int encodeLengthLength(int length); // length to encode length
static int decodeLengthLength(int b1) throw(); static int decodeLengthLength(int b1);
static int decodeVLLength(int b1) throw(); static int decodeVLLength(int b1);
static int decodeVLLength(int b1, int b2) throw(); static int decodeVLLength(int b1, int b2);
static int decodeVLLength(int b1, int b2, int b3) throw(); static int decodeVLLength(int b1, int b2, int b3);
static void TestSerializer(); static void TestSerializer();
}; };
@@ -113,15 +114,17 @@ public:
int getPos(void) { return mPos; } int getPos(void) { return mPos; }
int getBytesLeft(); int getBytesLeft();
unsigned char get8() throw(); // get functions throw on error
uint16 get16() throw(); unsigned char get8();
uint32 get32() throw(); uint16 get16();
uint64 get64() throw(); uint32 get32();
uint160 get160() throw(); uint64 get64();
uint256 get256() throw(); uint128 get128();
uint160 get160();
uint256 get256();
std::vector<unsigned char> getVL() throw(); std::vector<unsigned char> getVL();
std::vector<TaggedListItem> getTaggedList() throw(); std::vector<TaggedListItem> getTaggedList();
}; };
#endif #endif

View File

@@ -276,8 +276,8 @@ public:
// ECIES functions. These throw on failure // ECIES functions. These throw on failure
// returns a 64-byte secret unique to these two keys. At least one private key must be known. // returns a 32-byte secret unique to these two keys. At least one private key must be known.
std::vector<unsigned char> getECIESSecret(CKey& otherKey); uint256 getECIESSecret(CKey& otherKey);
// encrypt/decrypt functions with integrity checking. // encrypt/decrypt functions with integrity checking.
// Note that the other side must somehow know what keys to use // Note that the other side must somehow know what keys to use