pub trait SigningKey: PublicKeyData { // Required method fn sign(&self, msg: &[u8]) -> Result<Vec<u8>, Error>; }
A key that can be used to sign messages
Signs msg using the selected algorithm
msg