use super::Writer;
use crate::Result;
use pem_rfc7468::{Encoder, LineEnding};
pub struct PemWriter<'w>(Encoder<'static, 'w>);
impl<'w> PemWriter<'w> {
pub fn new(
type_label: &'static str,
line_ending: LineEnding,
out: &'w mut [u8],
) -> Result<Self> {
Ok(Self(Encoder::new(type_label, line_ending, out)?))
}
pub fn type_label(&self) -> &'static str {
self.0.type_label()
}
pub fn finish(self) -> Result<usize> {
Ok(self.0.finish()?)
}
}
impl Writer for PemWriter<'_> {
fn write(&mut self, slice: &[u8]) -> Result<()> {
self.0.encode(slice)?;
Ok(())
}
}