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

Method remove_blinding

python/oberon/classes.py:69–70  ·  view source on GitHub ↗
(self, blinder: bytes)

Source from the content-addressed store, hash-verified

67 return Token(add_blinding(self.value, blinder))
68
69 def remove_blinding(self, blinder: bytes):
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))

Callers

nothing calls this directly

Calls 2

TokenClass · 0.70
remove_blindingFunction · 0.70

Tested by

no test coverage detected