Construct an invalid private key.
| 56 | public: |
| 57 | //! Construct an invalid private key. |
| 58 | CKey() : fValid(false), fCompressed(false) |
| 59 | { |
| 60 | // Important: vch must be 32 bytes in length to not break serialization |
| 61 | keydata.resize(32); |
| 62 | } |
| 63 | |
| 64 | friend bool operator==(const CKey& a, const CKey& b) |
| 65 | { |