PIVX Core  5.6.99
P2P Digital Currency
sapling_note_tests.cpp
Go to the documentation of this file.
1 // Copyright (c) 2016-2020 The ZCash developers
2 // Copyright (c) 2020 The PIVX Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #include "test/test_pivx.h"
7 
8 #include "sapling/address.h"
9 #include "sapling/note.h"
10 #include "sapling/sapling_util.h"
11 
12 #include "amount.h"
13 #include "random.h"
14 #include <librustzcash.h>
15 
16 #include <array>
17 
18 #include <boost/test/unit_test.hpp>
19 
21 
22 // Test data from https://github.com/zcash-hackworks/zcash-test-vectors/blob/master/sapling_key_components.py
23 BOOST_AUTO_TEST_CASE(testVectors) {
24  uint64_t v = 0;
25  uint64_t note_pos = 0;
26  std::array<uint8_t, 11> diversifier{0xf1, 0x9d, 0x9b, 0x79, 0x7e, 0x39, 0xf3, 0x37, 0x44, 0x58, 0x39};
27  std::vector<uint8_t> v_sk{
28  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
29  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30  0x00, 0x00, 0x00, 0x00};
31  std::vector<uint8_t> v_pk_d{
32  0xdb, 0x4c, 0xd2, 0xb0, 0xaa, 0xc4, 0xf7, 0xeb, 0x8c, 0xa1, 0x31, 0xf1, 0x65, 0x67,
33  0xc4, 0x45, 0xa9, 0x55, 0x51, 0x26, 0xd3, 0xc2, 0x9f, 0x14, 0xe3, 0xd7, 0x76, 0xe8,
34  0x41, 0xae, 0x74, 0x15};
35  std::vector<uint8_t> v_r{
36  0x39, 0x17, 0x6d, 0xac, 0x39, 0xac, 0xe4, 0x98, 0x0e, 0xcc, 0x8d, 0x77, 0x8e, 0x89,
37  0x86, 0x02, 0x55, 0xec, 0x36, 0x15, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38  0x00, 0x00, 0x00, 0x00};
39  std::vector<uint8_t> v_cm{
40  0xcb, 0x3c, 0xf9, 0x15, 0x32, 0x70, 0xd5, 0x7e, 0xb9, 0x14, 0xc6, 0xc2, 0xbc, 0xc0,
41  0x18, 0x50, 0xc9, 0xfe, 0xd4, 0x4f, 0xce, 0x08, 0x06, 0x27, 0x8f, 0x08, 0x3e, 0xf2,
42  0xdd, 0x07, 0x64, 0x39};
43  std::vector<uint8_t> v_nf{
44  0x44, 0xfa, 0xd6, 0x56, 0x4f, 0xfd, 0xec, 0x9f, 0xa1, 0x9c, 0x43, 0xa2, 0x8f, 0x86,
45  0x1d, 0x5e, 0xbf, 0x60, 0x23, 0x46, 0x00, 0x7d, 0xe7, 0x62, 0x67, 0xd9, 0x75, 0x27,
46  0x47, 0xab, 0x40, 0x63};
47  uint256 sk(v_sk);
48  uint256 pk_d(v_pk_d);
49  uint256 r(v_r);
50  uint256 cm(v_cm);
51  uint256 nf(v_nf);
52 
53  // Test commitment
54  libzcash::SaplingNote note = libzcash::SaplingNote(diversifier, pk_d, v, r);
55  BOOST_CHECK(note.cmu().get() == cm);
56 
57  // Test nullifier
58  libzcash::SaplingSpendingKey spendingKey(sk);
59  BOOST_CHECK(note.nullifier(spendingKey.full_viewing_key(), note_pos) == nf);
60 }
61 
63  CAmount MAX_MONEY_OUT = 21000000 * COIN;
64  // Test creating random notes using the same spending key
66  libzcash::SaplingNote note1(address, GetRand(MAX_MONEY_OUT));
67  libzcash::SaplingNote note2(address, GetRand(MAX_MONEY_OUT));
68 
69  BOOST_CHECK(note1.d == note2.d);
70  BOOST_CHECK(note1.pk_d == note2.pk_d);
71  BOOST_CHECK(note1.value() != note2.value());
72  BOOST_CHECK(note1.r != note2.r);
73 
74  // Test diversifier and pk_d are not the same for different spending keys
75  libzcash::SaplingNote note3(libzcash::SaplingSpendingKey::random().default_address(), GetRand(MAX_MONEY_OUT));
76  BOOST_CHECK(note1.d != note3.d);
77  BOOST_CHECK(note1.pk_d != note3.pk_d);
78 }
79 
int64_t CAmount
Amount in PIV (Can be negative)
Definition: amount.h:13
uint64_t value() const
Definition: note.h:30
Optional< uint256 > cmu() const
Definition: note.cpp:29
diversifier_t d
Definition: note.h:35
uint256 pk_d
Definition: note.h:36
Optional< uint256 > nullifier(const SaplingFullViewingKey &vk, const uint64_t position) const
Definition: note.cpp:47
static SaplingSpendingKey random()
Definition: address.cpp:64
SaplingPaymentAddress default_address() const
Definition: address.cpp:83
SaplingFullViewingKey full_viewing_key() const
Definition: address.cpp:41
256-bit opaque blob.
Definition: uint256.h:138
BOOST_AUTO_TEST_SUITE_END()
#define BOOST_FIXTURE_TEST_SUITE(a, b)
Definition: object.cpp:14
#define BOOST_CHECK(expr)
Definition: object.cpp:17
uint64_t GetRand(uint64_t nMax) noexcept
Definition: random.cpp:586
BOOST_AUTO_TEST_CASE(testVectors)
Basic testing setup.
Definition: test_pivx.h:51