logo
pub trait Writer {
    fn write(&mut self, slice: &[u8]) -> Result<()>;

    fn write_byte(&mut self, byte: u8) -> Result<()> { ... }
}
Expand description

Writer trait which outputs encoded DER.

Required Methods

Write the given DER-encoded bytes as output.

Provided Methods

Write a single byte.

Implementors