From 805d06785b6ff35fde7148762277dd1ae678beeb Mon Sep 17 00:00:00 2001 From: Nalin Bhardwaj Date: Sun, 23 Oct 2022 22:46:12 -0700 Subject: [PATCH] expose more stuff externally for testing --- curdleproofs/curdleproofs/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/curdleproofs/curdleproofs/__init__.py b/curdleproofs/curdleproofs/__init__.py index 0010faa..30a6e10 100644 --- a/curdleproofs/curdleproofs/__init__.py +++ b/curdleproofs/curdleproofs/__init__.py @@ -1 +1,9 @@ from .whisk_interface import IsValidWhiskShuffleProof, IsValidWhiskOpeningProof +from .opening import TrackerOpeningProof +from .crs import CurdleproofsCrs +from .curdleproofs import ( + N_BLINDERS, + CurdleProofsProof, + VerifierInput, + shuffle_permute_and_commit_input, +)