From d43eef6def9b1ae06c2f9f12eb5a141cfc22f7c8 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Tue, 21 Nov 2017 14:13:20 +0000 Subject: [PATCH] ringct: add a version of addKeys which returns the result --- src/ringct/rctOps.cpp | 5 +++++ src/ringct/rctOps.h | 1 + 2 files changed, 6 insertions(+) diff --git a/src/ringct/rctOps.cpp b/src/ringct/rctOps.cpp index d0e0964b6..292bb8f37 100644 --- a/src/ringct/rctOps.cpp +++ b/src/ringct/rctOps.cpp @@ -220,6 +220,11 @@ namespace rct { ge_p3_tobytes(AB.bytes, &A2); } + rct::key addKeys(const key &A, const key &B) { + key k; + addKeys(k, A, B); + return k; + } //addKeys1 //aGB = aG + B where a is a scalar, G is the basepoint, and B is a point diff --git a/src/ringct/rctOps.h b/src/ringct/rctOps.h index 412450c18..1ff2e257b 100644 --- a/src/ringct/rctOps.h +++ b/src/ringct/rctOps.h @@ -123,6 +123,7 @@ namespace rct { //for curve points: AB = A + B void addKeys(key &AB, const key &A, const key &B); + rct::key addKeys(const key &A, const key &B); //aGB = aG + B where a is a scalar, G is the basepoint, and B is a point void addKeys1(key &aGB, const key &a, const key & B); //aGbB = aG + bB where a, b are scalars, G is the basepoint and B is a point