circomlib/circuits/smt/smthash_poseidon.circom

57 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-12-16 13:27:29 +03:00
/*
Copyright 2018 0KIMS association.
This file is part of circom (Zero Knowledge Circuit Compiler).
circom is a free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
circom is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU General Public License
along with circom. If not, see <https://www.gnu.org/licenses/>.
*/
2019-06-04 18:32:28 +03:00
include "../poseidon.circom";
2018-12-11 19:25:21 +03:00
/*
Hash1 = H(1 | key | value)
*/
template SMTHash1() {
signal input key;
signal input value;
signal output out;
component h = Poseidon(3); // Constant
2019-06-04 18:32:28 +03:00
h.inputs[0] <== key;
h.inputs[1] <== value;
h.inputs[2] <== 1;
2018-12-11 19:25:21 +03:00
2019-04-28 14:03:15 +03:00
out <== h.out;
2018-12-11 19:25:21 +03:00
}
/*
This component is used to create the 2 nodes.
Hash2 = H(Hl | Hr)
*/
template SMTHash2() {
signal input L;
signal input R;
signal output out;
component h = Poseidon(2); // Constant
2019-06-04 18:32:28 +03:00
h.inputs[0] <== L;
h.inputs[1] <== R;
2018-12-11 19:25:21 +03:00
2019-04-28 14:03:15 +03:00
out <== h.out;
2018-12-11 19:25:21 +03:00
}