MCPcopy Create free account
hub / github.com/cryptidtech/oberon / create_proof

Method create_proof

python/oberon/classes.py:72–73  ·  view source on GitHub ↗
(self, identifier: bytes, blindings: list[bytes], nonce: bytes)

Source from the content-addressed store, hash-verified

70 return Token(remove_blinding(self.value, blinder))
71
72 def create_proof(self, identifier: bytes, blindings: list[bytes], nonce: bytes):
73 return Proof(create_proof(self.value, identifier, blindings, nonce))
74
75 def verify(self, identifier: bytes, public_key: PublicKey):
76 return verify_token(self.value, public_key.value, identifier)

Callers

nothing calls this directly

Calls 2

ProofClass · 0.70
create_proofFunction · 0.70

Tested by

no test coverage detected