blob: 164b215f75f495f479686df6dbff4179fe9a3b74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//! Writer trait.
#[cfg(feature = "pem")]
pub(crate) mod pem;
pub(crate) mod slice;
use crate::Result;
#[cfg(feature = "std")]
use std::io;
/// Writer trait which outputs encoded DER.
pub trait Writer {
/// Write the given DER-encoded bytes as output.
fn write(&mut self, slice: &[u8]) -> Result<()>;
/// Write a single byte.
fn write_byte(&mut self, byte: u8) -> Result<()> {
self.write(&[byte])
}
}
#[cfg(feature = "std")]
impl<W: io::Write> Writer for W {
fn write(&mut self, slice: &[u8]) -> Result<()> {
<Self as io::Write>::write(self, slice)?;
Ok(())
}
}
|