[−][src]Trait itsdangerous::algorithm::Signer
A trait which implements a Signer, which you can append inputs to, and then generate a final signature with.
A trait which implements a Signer, which you can append inputs to, and then generate a final signature with.
type OutputSize: ArrayLength<u8>fn new(key: &[u8]) -> Selffn input(&mut self, value: &[u8])fn sign(self) -> Signature<Self::OutputSize>fn input_chained(self, value: &[u8]) -> Self