![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Compact serializer for scripts. More...
#include <script.h>
Public Member Functions | |
CScriptCompressor (CScript &scriptIn) | |
unsigned int | GetSerializeSize (int nType, int nVersion) const |
template<typename Stream > | |
void | Serialize (Stream &s, int nType, int nVersion) const |
template<typename Stream > | |
void | Unserialize (Stream &s, int nType, int nVersion) |
Protected Member Functions | |
bool | IsToKeyID (CKeyID &hash) const |
bool | IsToScriptID (CScriptID &hash) const |
bool | IsToPubKey (CPubKey &pubkey) const |
bool | Compress (std::vector< unsigned char > &out) const |
unsigned int | GetSpecialSize (unsigned int nSize) const |
bool | Decompress (unsigned int nSize, const std::vector< unsigned char > &out) |
Private Attributes | |
CScript & | script |
Static Private Attributes | |
static const unsigned int | nSpecialScripts = 6 |
Compact serializer for scripts.
It detects common cases and encodes them much more efficiently. 3 special cases are defined:
Other scripts up to 121 bytes require 1 byte + script length. Above that, scripts up to 16505 bytes require 2 bytes + script length.
|
inline |
|
protected |
Definition at line 1819 of file script.cpp.
|
protected |
Definition at line 1859 of file script.cpp.
|
inline |
|
protected |
Definition at line 1850 of file script.cpp.
|
protected |
Definition at line 1783 of file script.cpp.
|
protected |
Definition at line 1804 of file script.cpp.
|
protected |
Definition at line 1794 of file script.cpp.
|
inline |
|
inline |
|
staticprivate |