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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
use base64::URL_SAFE_NO_PAD;
use serde_json::json;
use crate::{
acme::{get_header, AcmeError, Auth, Challenge, ChallengeType, Directory, Identifier, Order},
cache::AcmeCache,
crypto::EcdsaP256SHA256KeyPair,
jose::{jose_req, key_authorization_sha256},
};
use generic_async_http_client::Response;
#[derive(Debug)]
pub struct Account {
key_pair: EcdsaP256SHA256KeyPair,
directory: Directory,
kid: String,
}
impl Account {
pub async fn load_or_create<'a, C, S, I>(
directory: Directory,
cache: Option<&C>,
contact: I,
) -> Result<Self, AcmeError>
where
C: AcmeCache,
S: AsRef<str> + 'a,
I: IntoIterator<Item = &'a S>,
{
let contact: Vec<&'a str> = contact.into_iter().map(AsRef::<str>::as_ref).collect();
let pkcs8 = match &cache {
Some(cache) => cache
.read_account(&contact)
.await
.map_err(AcmeError::cache)?,
None => None,
};
let key_pair = match pkcs8 {
Some(pkcs8) => {
log::info!("found cached account key");
EcdsaP256SHA256KeyPair::load(&pkcs8)
}
None => {
log::info!("creating a new account key");
match EcdsaP256SHA256KeyPair::generate() {
Ok(pkcs8) => {
let data = pkcs8.as_ref();
if let Some(cache) = &cache {
cache
.write_account(&contact, data)
.await
.map_err(AcmeError::cache)?;
}
EcdsaP256SHA256KeyPair::load(data)
}
Err(_) => Err(()),
}
}
}
.map_err(|_| {
AcmeError::Io(std::io::Error::new(
std::io::ErrorKind::InvalidData,
"could not create key pair",
))
})?;
let payload = json!({
"termsOfServiceAgreed": true,
"contact": contact,
})
.to_string();
let response = jose_req(
&key_pair,
None,
&directory.nonce().await?,
&directory.new_account,
&payload,
)
.await?;
let kid = get_header(&response, "Location")?;
Ok(Account {
key_pair,
kid,
directory,
})
}
async fn request(&self, url: impl AsRef<str>, payload: &str) -> Result<Response, AcmeError> {
jose_req(
&self.key_pair,
Some(&self.kid),
&self.directory.nonce().await?,
url.as_ref(),
payload,
)
.await
}
pub async fn new_order(&self, domains: Vec<String>) -> Result<Order, AcmeError> {
let domains: Vec<Identifier> = domains.into_iter().map(Identifier::Dns).collect();
let payload = format!("{{\"identifiers\":{}}}", serde_json::to_string(&domains)?);
let mut response = self.request(&self.directory.new_order, &payload).await?;
Ok(response.json().await?)
}
pub async fn check_auth(&self, url: impl AsRef<str>) -> Result<Auth, AcmeError> {
let payload = "".to_string();
let mut response = self.request(url, &payload).await?;
Ok(response.json().await?)
}
pub async fn trigger_challenge(&self, url: impl AsRef<str>) -> Result<(), AcmeError> {
self.request(&url, "{}").await?;
Ok(())
}
pub async fn send_csr(&self, url: impl AsRef<str>, csr: Vec<u8>) -> Result<Order, AcmeError> {
let payload = format!(
"{{\"csr\":\"{}\"}}",
base64::encode_config(csr, URL_SAFE_NO_PAD)
);
let mut response = self.request(&url, &payload).await?;
Ok(response.json().await?)
}
pub async fn obtain_certificate(&self, url: impl AsRef<str>) -> Result<String, AcmeError> {
Ok(self.request(&url, "").await?.text().await?)
}
pub fn tls_alpn_01<'a>(
&self,
challenges: &'a [Challenge],
) -> Result<(&'a Challenge, impl AsRef<[u8]>), AcmeError> {
let challenge = challenges
.iter()
.find(|c| c.typ == ChallengeType::TlsAlpn01);
let challenge = match challenge {
Some(challenge) => challenge,
None => return Err(AcmeError::NoTlsAlpn01Challenge),
};
let key_auth = key_authorization_sha256(&self.key_pair, &*challenge.token)?;
Ok((challenge, key_auth))
}
}