diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-08-28 02:22:00 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-08-28 02:22:00 -0500 |
commit | 85014813cf51c5704ebf77fc9af3d196c859b373 (patch) | |
tree | c847aad919542e885f276a78346ade72878998dc /src/ringct/rctOps.h | |
parent | Merge pull request #5844 (diff) | |
parent | MLSAG speedup and additional checks (diff) | |
download | monero-85014813cf51c5704ebf77fc9af3d196c859b373.tar.xz |
Merge pull request #5707
3a0451a MLSAG speedup and additional checks (SarangNoether)
Diffstat (limited to 'src/ringct/rctOps.h')
-rw-r--r-- | src/ringct/rctOps.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ringct/rctOps.h b/src/ringct/rctOps.h index dd6d87593..c24d48e9a 100644 --- a/src/ringct/rctOps.h +++ b/src/ringct/rctOps.h @@ -172,10 +172,7 @@ namespace rct { key cn_fast_hash(const key64 keys); key hash_to_scalar(const key64 keys); - //returns hashToPoint as described in https://github.com/ShenNoether/ge_fromfe_writeup - key hashToPointSimple(const key &in); - key hashToPoint(const key &in); - void hashToPoint(key &out, const key &in); + void hash_to_p3(ge_p3 &hash8_p3, const key &k); //sums a vector of curve points (for scalars use sc_add) void sumKeys(key & Csum, const key &Cis); |