From 9b1afe5f2d488c64e3fb5e087055cf66d2165391 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Fri, 13 May 2016 20:45:20 +0100 Subject: ringct: import of Shen Noether's ring confidential transactions --- src/crypto/crypto.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/crypto/crypto.h') diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index fa55c2aab..aa437d57d 100644 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -64,6 +64,22 @@ namespace crypto { friend class crypto_ops; }; + POD_CLASS public_keyV { + std::vector keys; + int rows; + }; + + POD_CLASS secret_keyV { + std::vector keys; + int rows; + }; + + POD_CLASS public_keyM { + int cols; + int rows; + std::vector column_vectors; + }; + POD_CLASS key_derivation: ec_point { friend class crypto_ops; }; -- cgit v1.2.3