Anoma.RM.Transparent.ProvingSystem.RLPS (Anoma v0.31.0)
I am the resource logic proving system module for the TRM.
I provide the interface for everything that has to do with the TRM resource logic proving.
Public API
I have the following public functionality
Summary
Functions
I am a function to matching the resource form the tag provided.
I am the TRM resource logic proving system prove interface.
I am the verification function of the TRM resource logic proving system.
Types
@type t() :: %Anoma.RM.Transparent.ProvingSystem.RLPS{ instance: Anoma.RM.Transparent.ProvingSystem.RLPS.Instance.t(), proof: <<_::0>>, proving_key: binary(), verifying_key: binary(), witness: <<_::0>> }
Functions
from_noun(list)
match_resource(tag, bool)
@spec match_resource(integer(), boolean()) :: {:ok, Anoma.RM.Transparent.Resource.t()} | {:error, String.t()}
@spec match_resource(integer(), boolean()) :: {:ok, Anoma.RM.Transparent.Resource.t()} | {:error, String.t()}
I am a function to matching the resource form the tag provided.
In particular, given a flag I try to un-match the jammed resource from the commitment or nullifier.
prove(_, _, _)
@spec prove(<<_::0>>, Anoma.RM.Transparent.ProvingSystem.RLPS.Instance.t(), <<_::0>>) :: <<_::0>>
I am the TRM resource logic proving system prove interface.
As we are in the transparent case, this is always trivial.
to_noun(t)
verify(jammed_predicate, instance, arg)
@spec verify(binary(), Anoma.RM.Transparent.ProvingSystem.RLPS.Instance.t(), <<_::0>>) :: boolean()
I am the verification function of the TRM resource logic proving system.
I accept a jammed predicate as my verifying key. I first check that it can be cued, then make sure that the key corresponds to the resource, after which I run the jammed logic on the instance.