Get the corresponding public key
(&self)
| 140 | |
| 141 | /// Get the corresponding public key |
| 142 | pub fn public_key(&self) -> PublicKey { |
| 143 | PublicKey(self.0.verifying_key()) |
| 144 | } |
| 145 | |
| 146 | /// Sign a message |
| 147 | pub fn sign(&self, message: &[u8]) -> [u8; 64] { |
no test coverage detected