Verify this signature against a message and public key.
(&self, message: &[u8], public_key: &PublicKey)
| 85 | |
| 86 | /// Verify this signature against a message and public key. |
| 87 | pub fn verify(&self, message: &[u8], public_key: &PublicKey) -> Result<(), IdentityError> { |
| 88 | public_key.verify(message, &self.0) |
| 89 | } |
| 90 | |
| 91 | /// Verify this signature against a message and identity. |
| 92 | pub fn verify_with_identity( |
no outgoing calls
no test coverage detected