(self, identifier: bytes, blindings: list[bytes], nonce: 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)) |
| 74 | |
| 75 | def verify(self, identifier: bytes, public_key: PublicKey): |
| 76 | return verify_token(self.value, public_key.value, identifier) |
nothing calls this directly
no test coverage detected