pub trait Signable {
// Required method
fn to_signable_bytes(&self) -> Vec<u8> ⓘ;
}Expand description
Trait para tipos que podem ser assinados.
Define como um tipo gera bytes determinísticos para assinatura.
LogLine implementa este trait.
Required Methods§
Sourcefn to_signable_bytes(&self) -> Vec<u8> ⓘ
fn to_signable_bytes(&self) -> Vec<u8> ⓘ
Gera bytes determinísticos que serão assinados.