We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
key
1 parent 9866a0e commit c7dce22Copy full SHA for c7dce22
src/ringct/rctTypes.h
@@ -84,6 +84,7 @@ namespace rct {
84
return bytes[i];
85
}
86
bool operator==(const key &k) const { return !crypto_verify_32(bytes, k.bytes); }
87
+ bool operator!=(const key &k) const { return crypto_verify_32(bytes, k.bytes); }
88
unsigned char bytes[32];
89
};
90
typedef std::vector<key> keyV; //vector of keys
0 commit comments