(&self)
| 16 | |
| 17 | impl Signature { |
| 18 | pub fn as_bytes(&self) -> &[u8; crypto_sign_BYTES as usize] { |
| 19 | &self.0 |
| 20 | } |
| 21 | |
| 22 | pub fn from_bytes(bytes: [u8; crypto_sign_BYTES as usize]) -> Self { |
| 23 | Signature(bytes) |
no outgoing calls
no test coverage detected