Skip to content

Commit

Permalink
fix import in register circuits
Browse files Browse the repository at this point in the history
  • Loading branch information
remicolin committed Sep 14, 2024
1 parent 38febb5 commit a18d969
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion circuits/circuits/register/register_ecdsa_sha1.circom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma circom 2.1.5;
include "circomlib/circuits/poseidon.circom";
include "../verifier/passport_verifier_ecdsa_sha1.circom";
include "../utils/computeCommitment.circom";
include "../utils/LeafHasherLight.circom";
include "../utils/leafHasherLight.circom";

template REGISTER_ECDSA_SHA1(n, k, max_datahashes_bytes, nLevels, signatureAlgorithm) {
signal input secret;
Expand Down
2 changes: 1 addition & 1 deletion circuits/circuits/register/register_ecdsa_sha256.circom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma circom 2.1.5;
include "circomlib/circuits/poseidon.circom";
include "../verifier/passport_verifier_ecdsa_sha256.circom";
include "../utils/computeCommitment.circom";
include "../utils/LeafHasherLight.circom";
include "../utils/leafHasherLight.circom";

template REGISTER_ECDSA_SHA256(n, k, max_datahashes_bytes, nLevels, signatureAlgorithm) {
signal input secret;
Expand Down
2 changes: 1 addition & 1 deletion circuits/circuits/register/register_rsa_65537_sha1.circom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma circom 2.1.5;
include "circomlib/circuits/poseidon.circom";
include "../verifier/passport_verifier_rsa_65537_sha1.circom";
include "../utils/splitSignalsToWords.circom";
include "../utils/LeafHasherLight.circom";
include "../utils/leafHasherLight.circom";
include "../utils/computeCommitment.circom";

template REGISTER_RSA_65537_SHA1(n, k, max_datahashes_bytes, nLevels, signatureAlgorithm) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma circom 2.1.5;
include "circomlib/circuits/poseidon.circom";
include "../verifier/passport_verifier_rsa_65537_sha256.circom";
include "../utils/splitSignalsToWords.circom";
include "../utils/LeafHasherLight.circom";
include "../utils/leafHasherLight.circom";
include "../utils/computeCommitment.circom";

template REGISTER_RSA_65537_SHA256(n, k, max_datahashes_bytes, nLevels, signatureAlgorithm) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma circom 2.1.5;
include "circomlib/circuits/poseidon.circom";
include "../verifier/passport_verifier_rsapss_65537_sha256.circom";
include "../utils/splitSignalsToWords.circom";
include "../utils/LeafHasherLight.circom";
include "../utils/leafHasherLight.circom";
include "../utils/computeCommitment.circom";

template REGISTER_RSAPSS_65537_SHA256(n, k, max_datahashes_bytes, nLevels, signatureAlgorithm) {
Expand Down

0 comments on commit a18d969

Please sign in to comment.