diff options
author | Sarang Noether <32460187+SarangNoether@users.noreply.github.com> | 2019-08-29 11:35:12 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-08-27 12:43:29 +0000 |
commit | 4b328c66161d11ddb240ca9c10298b0581aaa6b5 (patch) | |
tree | b01f090bb79a5fa4bf37064b45accd4d5e6c62da /src/ringct/rctTypes.h | |
parent | Merge pull request #6771 (diff) | |
download | monero-4b328c66161d11ddb240ca9c10298b0581aaa6b5.tar.xz |
CLSAG signatures
Diffstat (limited to 'src/ringct/rctTypes.h')
-rw-r--r-- | src/ringct/rctTypes.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ringct/rctTypes.h b/src/ringct/rctTypes.h index ce11981ad..b83c267d0 100644 --- a/src/ringct/rctTypes.h +++ b/src/ringct/rctTypes.h @@ -163,6 +163,21 @@ namespace rct { // FIELD(II) - not serialized, it can be reconstructed END_SERIALIZE() }; + + // CLSAG signature + struct clsag { + keyV s; // scalars + key c1; + + key I; // signing key image + key D; // commitment key image + + BEGIN_SERIALIZE_OBJECT() + FIELD(s) + FIELD(c1) + END_SERIALIZE() + }; + //contains the data for an Borromean sig // also contains the "Ci" values such that // \sum Ci = C |