#ifndef __PROOF_HPP #define __PROOF_HPP #include #include #include #include "Scalar.hpp" #include "Curvepoint.hpp" // typedef std::string Proof; struct Proof { std::string basic; std::vector partialUniversals; std::vector initParts; std::vector challengeParts; std::vector responseParts; }; Scalar oracle(std::string input); #endif