-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpkcs12.rs
51 lines (42 loc) · 1.69 KB
/
pkcs12.rs
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use std::{io, path::Path, result};
use reqwest::Identity;
use thiserror::Error;
use tokio::fs;
/// Objeto para manipulação de certificados PKCS #12.
#[derive(Debug)]
pub struct Pkcs12Certificate(Identity);
/// Tipo para tratar erros relacionados a I/O e leitura de certificado PKCS #12.
#[derive(Error, Debug)]
pub enum Pkcs12CertificateError {
/// Erros relacionados a I/O.
#[error(transparent)]
Io(#[from] io::Error),
/// Erros relacionados a leitura de certificado PKCS #12.
#[error(transparent)]
Pkcs12(#[from] reqwest::Error),
}
/// Tipo para tratar retorno de leitura do certificado PKCS #12.
pub type Pkcs12CertificateResult = result::Result<Pkcs12Certificate, Pkcs12CertificateError>;
impl Pkcs12Certificate {
#[inline]
fn from(bytes: &[u8], password: &str) -> Pkcs12CertificateResult {
Ok(Self {
0: Identity::from_pkcs12_der(&bytes, password)?,
})
}
/// Cria novo objeto PKCS #12 a partir de bytes informando senha para descriptografar a chave.
pub fn from_bytes(bytes: &[u8], password: &str) -> Pkcs12CertificateResult {
Self::from(bytes, password)
}
/// Cria novo objeto PKCS #12 a partir de string estática informando senha para descriptografar a chave.
pub fn from_str(string: &str, password: &str) -> Pkcs12CertificateResult {
Self::from(string.as_bytes(), password)
}
/// Cria novo objeto PKCS #12 a partir de arquivo informando senha para descriptografar a chave.
pub async fn from_file<P: AsRef<Path>>(path: P, password: &str) -> Pkcs12CertificateResult {
Self::from(&fs::read(path).await?, password)
}
pub(crate) fn into_inner(self) -> Identity {
self.0
}
}