smime-tree 0.3.2

S/MIME sign/verify/encrypt/decrypt via key traits
Documentation
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
//! S/MIME sign: produce a `multipart/signed` message.

use crate::{DigestAlgorithm, SigningKey, SmimeError};
use std::time::SystemTime;

use base64::{engine::general_purpose::STANDARD as BASE64, Engine as _};
use cms::{
    cert::CertificateChoices,
    content_info::{CmsVersion, ContentInfo},
    signed_data::{
        CertificateSet, DigestAlgorithmIdentifiers, EncapsulatedContentInfo, SignatureValue,
        SignedAttributes, SignedData, SignerIdentifier, SignerInfo, SignerInfos,
    },
};
use der::{
    asn1::{ObjectIdentifier, OctetStringRef, SetOfVec},
    Any, AnyRef, Decode, Encode, Tag,
};
use sha2::{Digest, Sha256, Sha384, Sha512};
use spki::AlgorithmIdentifierOwned;
use x509_cert::{
    attr::{Attribute, AttributeValue},
    certificate::Certificate,
};

use const_oid::db::rfc5911::{ID_CONTENT_TYPE, ID_DATA, ID_MESSAGE_DIGEST, ID_SIGNING_TIME};
use const_oid::db::rfc5912::{
    ECDSA_WITH_SHA_256, ECDSA_WITH_SHA_384, ID_EC_PUBLIC_KEY, ID_SHA_256, ID_SHA_384, ID_SHA_512,
    RSA_ENCRYPTION, SHA_256_WITH_RSA_ENCRYPTION, SHA_384_WITH_RSA_ENCRYPTION,
    SHA_512_WITH_RSA_ENCRYPTION,
};

/// Sign MIME content. Returns `multipart/signed` outer MIME bytes.
///
/// The `content_mime` bytes are placed verbatim as the first MIME part.
/// The CMS `SignedData` blob is base64-encoded into the second MIME part.
///
/// `now` is embedded as the CMS signing-time attribute (RFC 5652 §11.3).
/// Pass `SystemTime::now()` for production use, or a fixed value in tests.
///
/// The digest algorithm for each key is selected based on that key's certificate:
/// RSA and EC P-256 use SHA-256; EC P-384 uses SHA-384.
/// P-521 keys are not supported and will return `SmimeError::UnsupportedAlgorithm`.
/// Each key may override this via [`SigningKey::preferred_digest_algorithm`].
///
/// When multiple keys use different digest algorithms, the `micalg` parameter
/// in the outer Content-Type header lists them comma-separated in first-seen order
/// (RFC 5751 §3.4.3.2), e.g. `sha-256,sha-384`.
///
/// # Output format
///
/// The returned bytes are a `multipart/signed` **body part**, not a complete
/// RFC 5322 message.  They begin with a `MIME-Version: 1.0` header and the
/// `multipart/signed` Content-Type but have no `From:`, `Date:`, or other
/// RFC 5322 message headers.  To send as email, wrap the output in a full
/// RFC 5322 message envelope.
pub fn sign(
    content_mime: &[u8],
    keys: &[&dyn SigningKey],
    now: SystemTime,
) -> Result<Vec<u8>, SmimeError> {
    if keys.is_empty() {
        return Err(SmimeError::MalformedInput(
            "sign() requires at least one signing key".into(),
        ));
    }

    // --- Step 1: build EncapsulatedContentInfo ---
    // RFC 5751 §3.4 / RFC 5652 §5.2: for multipart/signed (detached signature),
    // econtent MUST be absent. The content type OID is still present.
    let eci = EncapsulatedContentInfo {
        econtent_type: ID_DATA,
        econtent: None,
    };

    // --- Steps 2-6: build one SignerInfo per key ---
    //
    // Accumulator state shared across iterations:
    //   signer_infos_set  — the SET OF SignerInfo for SignedData
    //   digest_alg_set    — deduplicated SET of digest AlgorithmIdentifiers (RFC 5652 §5.1)
    //   cert_choices      — deduplicated CertificateSet (one cert per signer)
    //   any_ski           — true if any SignerInfo used SubjectKeyIdentifier (affects SD version)
    //   micalg_parts      — deduplicated, first-seen-order list of micalg strings (RFC 5751 §3.4.3.2)
    let mut signer_infos_set: SignerInfos = SignerInfos(SetOfVec::new());
    let mut digest_alg_set: DigestAlgorithmIdentifiers = SetOfVec::new();
    let mut cert_choices: CertificateSet = CertificateSet(SetOfVec::new());
    let mut any_ski = false;
    // micalg_parts: Vec preserving first-seen order; entries are unique.
    let mut micalg_parts: Vec<&'static str> = Vec::new();

    for key in keys {
        let cert = key.certificate();

        // Select the digest algorithm based on the key type so that the algorithm
        // OID in SignerInfo matches the key's security level:
        //   RSA → SHA-256 (standard for 2048/4096-bit RSA)
        //   EC P-256 → SHA-256  (RFC 5753 §7.1 recommendation)
        //   EC P-384 → SHA-384  (RFC 5753 §7.1 recommendation; P-384 requires SHA-384)
        //   EC P-521 → SHA-512  (RFC 5753 §7.1 recommendation)
        // The key may override via preferred_digest_algorithm().
        let digest_alg = key
            .preferred_digest_algorithm()
            .unwrap_or_else(|| select_digest_for_cert(cert));

        // Step 2: hash content_mime with this key's digest algorithm.
        // IMPORTANT: the hash covers exactly `content_mime` — the raw MIME bytes
        // the caller provides. The CRLF emitted on line 230 is boundary transport
        // padding (RFC 2046 §5.1.1 requires CRLF before each boundary delimiter)
        // and is NOT part of the hashed content. Callers of verify() must supply
        // exactly the same `content_mime` bytes that were hashed here.
        let msg_digest = hash_content(content_mime, &digest_alg);

        // Step 3: build signed attributes for this signer.
        // RFC 5652 §11.1: content-type, §11.2: message-digest, §11.3: signing-time.
        // Each SignerInfo gets its own copy (own message-digest, same signing-time).
        let ct_attr = make_content_type_attribute(ID_DATA)?;
        let md_attr = make_message_digest_attribute(&msg_digest)?;
        let st_attr = make_signing_time_attribute(now)?;

        let mut attrs_vec: SetOfVec<Attribute> = SetOfVec::new();
        attrs_vec.insert(ct_attr)?;
        attrs_vec.insert(md_attr)?;
        attrs_vec.insert(st_attr)?;
        let signed_attrs: SignedAttributes = attrs_vec;

        // Step 4: DER-encode this signer's SignedAttributes and call key.sign().
        let attrs_der = signed_attrs.to_der()?;
        let raw_sig = key.sign(&attrs_der, &digest_alg)?;

        // Step 5: determine signature algorithm OID from cert SPKI.
        // RFC 4055 §3.1: sha*WithRSAEncryption AlgorithmIdentifiers MUST include a
        // parameters field, and it MUST be NULL.  ECDSA OIDs (RFC 5480 §2.1) MUST
        // omit the parameters field entirely.
        let sig_alg_oid = signature_algorithm_oid(cert, &digest_alg)?;
        let is_rsa = cert
            .tbs_certificate()
            .subject_public_key_info()
            .algorithm
            .oid
            == RSA_ENCRYPTION;
        let signature_algorithm = AlgorithmIdentifierOwned {
            oid: sig_alg_oid,
            parameters: if is_rsa { Some(Any::null()) } else { None },
        };

        // Step 6: build SignerInfo for this key.
        let sid = SignerIdentifier::from(cert);
        // RFC 4055 §2.1: for SHA-256/384/512, the parameters field SHOULD be
        // absent. Implementations MUST accept both absent and NULL. We use
        // absent (None) as the SHOULD form. This matches OpenSSL's output.
        let digest_algorithm = AlgorithmIdentifierOwned {
            oid: digest_alg_oid(&digest_alg),
            parameters: None,
        };
        // RFC 5652 §5.3: SignerInfo.version is V1 for IssuerAndSerialNumber, V3 for SKI.
        let signer_info_version = match &sid {
            SignerIdentifier::IssuerAndSerialNumber(_) => CmsVersion::V1,
            SignerIdentifier::SubjectKeyIdentifier(_) => CmsVersion::V3,
        };
        if matches!(signer_info_version, CmsVersion::V3) {
            any_ski = true;
        }
        let signature_value = SignatureValue::new(raw_sig)?;

        let signer_info = SignerInfo {
            version: signer_info_version,
            sid,
            digest_alg: digest_algorithm.clone(),
            signed_attrs: Some(signed_attrs),
            signature_algorithm,
            signature: signature_value,
            unsigned_attrs: None,
        };

        // Accumulate: SetOfVec::insert() silently ignores duplicates.
        signer_infos_set.0.insert(signer_info)?;
        digest_alg_set.insert(digest_algorithm)?;
        cert_choices
            .0
            .insert(CertificateChoices::Certificate(cert.clone()))?;

        // Accumulate micalg in first-seen order (deduplicated).
        let micalg_str = micalg_param(&digest_alg);
        if !micalg_parts.contains(&micalg_str) {
            micalg_parts.push(micalg_str);
        }
    }

    // --- Step 7: build SignedData ---
    // RFC 5652 §5.1: SignedData.version is V3 if any SignerInfo uses SKI, else V1.
    let signed_data_version = if any_ski {
        CmsVersion::V3
    } else {
        CmsVersion::V1
    };

    let signed_data = SignedData {
        version: signed_data_version,
        digest_algorithms: digest_alg_set,
        encap_content_info: eci,
        certificates: Some(cert_choices),
        crls: None,
        signer_infos: signer_infos_set,
    };

    // --- Step 8: wrap in ContentInfo and DER-encode ---
    let sd_der = signed_data.to_der()?;
    let content_ref = AnyRef::try_from(sd_der.as_slice())?;
    let content_info = ContentInfo {
        content_type: const_oid::db::rfc5911::ID_SIGNED_DATA,
        content: Any::from(content_ref),
    };
    let p7s_der = content_info.to_der()?;

    // --- Step 9: build multipart/signed MIME output ---
    // RFC 5751 §3.4.3.2: micalg is comma-separated list of unique digest alg names.
    let micalg = micalg_parts.join(",");
    let boundary = random_boundary(content_mime)?;
    let p7s_b64 = BASE64.encode(&p7s_der);
    let p7s_b64_wrapped = wrap_base64(&p7s_b64, 76);

    let mut out: Vec<u8> = Vec::new();
    out.extend_from_slice(b"MIME-Version: 1.0\r\n");
    out.extend_from_slice(
        b"Content-Type: multipart/signed; protocol=\"application/pkcs7-signature\";\r\n",
    );
    out.extend_from_slice(b"\tmicalg=");
    out.extend_from_slice(micalg.as_bytes());
    out.extend_from_slice(b"; boundary=\"");
    out.extend_from_slice(boundary.as_bytes());
    out.extend_from_slice(b"\"\r\n");
    out.extend_from_slice(b"\r\n");
    // First part: the signed MIME content verbatim.
    // The CRLF after content_mime is boundary transport padding required by
    // RFC 2046 §5.1.1 (CRLF before each boundary delimiter). It is NOT part
    // of the signed content — the hash in Step 2 covers only content_mime.
    out.extend_from_slice(b"--");
    out.extend_from_slice(boundary.as_bytes());
    out.extend_from_slice(b"\r\n");
    out.extend_from_slice(content_mime);
    out.extend_from_slice(b"\r\n");
    // Second part: the detached signature
    out.extend_from_slice(b"--");
    out.extend_from_slice(boundary.as_bytes());
    out.extend_from_slice(b"\r\n");
    out.extend_from_slice(b"Content-Type: application/pkcs7-signature; name=smime.p7s\r\n");
    out.extend_from_slice(b"Content-Transfer-Encoding: base64\r\n");
    out.extend_from_slice(b"Content-Disposition: attachment; filename=smime.p7s\r\n");
    out.extend_from_slice(b"\r\n");
    out.extend_from_slice(p7s_b64_wrapped.as_bytes());
    out.extend_from_slice(b"\r\n");
    // Closing boundary
    out.extend_from_slice(b"--");
    out.extend_from_slice(boundary.as_bytes());
    out.extend_from_slice(b"--\r\n");

    Ok(out)
}

// ---------------------------------------------------------------------------
// Signed attribute constructors
// ---------------------------------------------------------------------------

/// Build a content-type attribute (RFC 5652 §11.1).
fn make_content_type_attribute(content_type: ObjectIdentifier) -> Result<Attribute, SmimeError> {
    let value = AttributeValue::new(Tag::ObjectIdentifier, content_type.as_bytes())?;
    let mut values: SetOfVec<AttributeValue> = SetOfVec::new();
    values.insert(value)?;
    Ok(Attribute {
        oid: ID_CONTENT_TYPE,
        values,
    })
}

/// Build a message-digest attribute (RFC 5652 §11.2).
fn make_message_digest_attribute(digest: &[u8]) -> Result<Attribute, SmimeError> {
    let os_ref = OctetStringRef::new(digest)?;
    let value = AttributeValue::new(Tag::OctetString, os_ref.as_bytes())?;
    let mut values: SetOfVec<AttributeValue> = SetOfVec::new();
    values.insert(value)?;
    Ok(Attribute {
        oid: ID_MESSAGE_DIGEST,
        values,
    })
}

/// Build a signing-time attribute (RFC 5652 §11.3) set to `now`.
fn make_signing_time_attribute(now: SystemTime) -> Result<Attribute, SmimeError> {
    let time = x509_cert::time::Time::try_from(now)
        .map_err(|e| SmimeError::MalformedInput(format!("signing time out of range: {e}")))?;
    let time_der = time.to_der()?;
    let value = AttributeValue::from_der(&time_der)?;
    let mut values: SetOfVec<AttributeValue> = SetOfVec::new();
    values.insert(value)?;
    Ok(Attribute {
        oid: ID_SIGNING_TIME,
        values,
    })
}

// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------

/// Hash `content` with the specified digest algorithm.
fn hash_content(content: &[u8], alg: &DigestAlgorithm) -> Vec<u8> {
    match alg {
        DigestAlgorithm::Sha256 => Sha256::digest(content).to_vec(),
        DigestAlgorithm::Sha384 => Sha384::digest(content).to_vec(),
        DigestAlgorithm::Sha512 => Sha512::digest(content).to_vec(),
    }
}

/// Return the digest algorithm OID for use in `AlgorithmIdentifier`.
fn digest_alg_oid(alg: &DigestAlgorithm) -> ObjectIdentifier {
    match alg {
        DigestAlgorithm::Sha256 => ID_SHA_256,
        DigestAlgorithm::Sha384 => ID_SHA_384,
        DigestAlgorithm::Sha512 => ID_SHA_512,
    }
}

/// Return the `micalg` Content-Type parameter string for the digest algorithm.
fn micalg_param(alg: &DigestAlgorithm) -> &'static str {
    match alg {
        DigestAlgorithm::Sha256 => "sha-256",
        DigestAlgorithm::Sha384 => "sha-384",
        DigestAlgorithm::Sha512 => "sha-512",
    }
}

/// Determine the signature algorithm OID from the certificate's SPKI algorithm
/// combined with the chosen digest algorithm.
fn signature_algorithm_oid(
    cert: &Certificate,
    digest_alg: &DigestAlgorithm,
) -> Result<ObjectIdentifier, SmimeError> {
    let spki_oid = cert
        .tbs_certificate()
        .subject_public_key_info()
        .algorithm
        .oid;

    if spki_oid == RSA_ENCRYPTION {
        return Ok(match digest_alg {
            DigestAlgorithm::Sha256 => SHA_256_WITH_RSA_ENCRYPTION,
            DigestAlgorithm::Sha384 => SHA_384_WITH_RSA_ENCRYPTION,
            DigestAlgorithm::Sha512 => SHA_512_WITH_RSA_ENCRYPTION,
        });
    }

    if spki_oid == ID_EC_PUBLIC_KEY {
        return match digest_alg {
            DigestAlgorithm::Sha256 => Ok(ECDSA_WITH_SHA_256),
            DigestAlgorithm::Sha384 => Ok(ECDSA_WITH_SHA_384),
            // P-521 (SHA-512) is not supported: neither sign() nor verify() has
            // a P-521 implementation.  P-521 keys must not be used with this crate.
            DigestAlgorithm::Sha512 => Err(SmimeError::UnsupportedAlgorithm(
                "P-521 keys are not supported; use P-256 or P-384".into(),
            )),
        };
    }

    Err(SmimeError::UnsupportedAlgorithm(format!(
        "SPKI OID {spki_oid} not supported for signing"
    )))
}

/// Select the appropriate digest algorithm for the certificate's key type.
///
/// RFC 5753 §7.1 recommends matching the hash strength to the EC curve:
/// P-256 → SHA-256, P-384 → SHA-384.
/// RSA keys default to SHA-256.  Unknown key types fall back to SHA-256.
/// P-521 keys select SHA-512, which causes `signature_algorithm_oid` to return
/// `UnsupportedAlgorithm` — P-521 is not supported by this crate.
fn select_digest_for_cert(cert: &Certificate) -> DigestAlgorithm {
    use const_oid::db::rfc5912::{SECP_384_R_1, SECP_521_R_1};
    let spki = cert.tbs_certificate().subject_public_key_info();
    if spki.algorithm.oid == ID_EC_PUBLIC_KEY {
        let curve = spki
            .algorithm
            .parameters
            .as_ref()
            .and_then(|p| p.decode_as::<der::asn1::ObjectIdentifier>().ok());
        if let Some(c) = curve {
            if c == SECP_384_R_1 {
                return DigestAlgorithm::Sha384;
            }
            if c == SECP_521_R_1 {
                return DigestAlgorithm::Sha512;
            }
        }
    }
    DigestAlgorithm::Sha256
}

/// Generate a random MIME boundary string that does not appear in `content`.
///
/// Uses 16 random bytes (hex-encoded) to produce a 32-character token, prefixed
/// with `"----=_Part_"`.  Retries up to 8 times on the astronomically unlikely
/// event of a collision with `content`.  Returns `Err` only if all 8 attempts
/// collide, which has probability less than 2^-448 for any fixed content.
///
/// The random boundary prevents adversarial content from causing a deterministic
/// signing failure (which was possible when the boundary was derived from the
/// SHA-256 of the content).
fn random_boundary(content: &[u8]) -> Result<String, SmimeError> {
    for _ in 0..8 {
        let mut rand_bytes = [0u8; 16];
        getrandom::fill(&mut rand_bytes).map_err(|e| SmimeError::RngFailure(format!("{e}")))?;
        let mut hex = String::with_capacity(32);
        for b in rand_bytes {
            use std::fmt::Write as _;
            write!(hex, "{b:02x}").expect("writing to String cannot fail");
        }
        let boundary = format!("----=_Part_{hex}");
        // RFC 2046 §5.1.1: boundary MUST NOT appear in any encapsulated body.
        if !content
            .windows(boundary.len())
            .any(|w| w == boundary.as_bytes())
        {
            return Ok(boundary);
        }
    }
    Err(SmimeError::BoundaryCollision)
}

/// Wrap a base64 string at `width` characters per line using CRLF line endings.
fn wrap_base64(b64: &str, width: usize) -> String {
    let mut out = String::with_capacity(b64.len() + (b64.len() / width + 1) * 2);
    for chunk in b64.as_bytes().chunks(width) {
        // b64 is a &str, so its byte slices are always valid UTF-8.
        out.push_str(
            core::str::from_utf8(chunk)
                .unwrap_or_else(|_| unreachable!("base64 output is always valid UTF-8")),
        );
        out.push_str("\r\n");
    }
    out
}