ringct: add convenience operators to key

This commit is contained in:
moneromooo-monero 2016-05-14 12:21:08 +01:00
parent 2d6303fb2c
commit b656001030
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -75,6 +75,10 @@ namespace rct {
unsigned char & operator[](int i) {
return bytes[i];
}
unsigned char operator[](int i) const {
return bytes[i];
}
bool operator==(const key &k) const { return !memcmp(bytes, k.bytes, sizeof(bytes)); }
unsigned char bytes[32];
};
typedef vector<key> keyV; //vector of keys