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

Link to this function

from_noun(list)

@spec from_noun(Noun.t()) :: {:ok, t()} | :error
Link to this function

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.

@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.

@spec to_noun(t()) :: Noun.t()
Link to this function

verify(jammed_predicate, instance, arg)

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.