(self, blinder: bytes)
| 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)) |
nothing calls this directly
no test coverage detected