pub trait DeviceSigningAuthority: Send + Sync {
// Required methods
fn public_key_hex(&self) -> String;
fn sign(&self, message: &[u8]) -> [u8; 64];
}Expand description
A retained capability that can sign as one device without exposing its key.