Get the public key as a base32 string.
(&self)
| 328 | |
| 329 | /// Get the public key as a base32 string. |
| 330 | pub fn public_key_base32(&self) -> String { |
| 331 | self.public_key.to_base32() |
| 332 | } |
| 333 | |
| 334 | /// Verify a signature made by this identity. |
| 335 | pub fn verify(&self, message: &[u8], signature: &[u8; 64]) -> Result<(), IdentityError> { |
no test coverage detected