diff options
author | h908714124 <kraftdurchblumen@gmx.de> | 2018-03-05 09:21:44 +0100 |
---|---|---|
committer | h908714124 <kraftdurchblumen@gmx.de> | 2018-03-05 09:21:44 +0100 |
commit | c95dddd2d23871b4880181705abf1822e32aa102 (patch) | |
tree | a47d4c742131b2c0c68f5cb4d0c2006c0ab7e9c7 /src/ringct/rctSigs.h | |
parent | Merge pull request #3303 (diff) | |
download | monero-c95dddd2d23871b4880181705abf1822e32aa102.tar.xz |
remove unused function keyImageV
Diffstat (limited to 'src/ringct/rctSigs.h')
-rw-r--r-- | src/ringct/rctSigs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ringct/rctSigs.h b/src/ringct/rctSigs.h index 17047fc0f..7485938ee 100644 --- a/src/ringct/rctSigs.h +++ b/src/ringct/rctSigs.h @@ -70,11 +70,9 @@ namespace rct { //Multilayered Spontaneous Anonymous Group Signatures (MLSAG signatures) //These are aka MG signatutes in earlier drafts of the ring ct paper // c.f. http://eprint.iacr.org/2015/1098 section 2. - // keyImageV just does I[i] = xx[i] * HashToPoint(xx[i] * G) for each i // Gen creates a signature which proves that for some column in the keymatrix "pk" // the signer knows a secret key for each row in that column // Ver verifies that the MG sig was created correctly - keyV keyImageV(const keyV &xx); mgSig MLSAG_Gen(const key &message, const keyM & pk, const keyV & xx, const multisig_kLRki *kLRki, key *mscout, const unsigned int index, size_t dsRows, hw::device &hwdev); bool MLSAG_Ver(const key &message, const keyM &pk, const mgSig &sig, size_t dsRows); //mgSig MLSAG_Gen_Old(const keyM & pk, const keyV & xx, const int index); |