saml 0.0.1-alpha.1

Stateless, async-native SAML 2.0 toolkit with no libxml2/xmlsec C build chain
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
//! XML-Encryption encryption per W3C XML-Encryption.
//! See `docs/rfcs/RFC-002-xml-crypto-core.md` §7.
//!
//! The entry point is `encrypt_assertion`: it serializes the input
//! `<saml:Assertion>`, encrypts it under a freshly-minted symmetric session
//! key (`data_algorithm`), wraps the session key under the recipient's RSA
//! public key (`key_transport_algorithm`), and emits the resulting
//! `<saml:EncryptedAssertion>` subtree.
//!
//! Algorithm defaults (RFC-002 §7.2): `Aes256Gcm` + `RsaOaep` with SHA-256.
//! CBC and MGF1-SHA1 are kept for compatibility but not promoted.

use aes::cipher::{BlockEncryptMut, KeyIvInit, block_padding::Pkcs7};
use aes_gcm::aead::{Aead, KeyInit, Payload};
use aes_gcm::{Aes128Gcm, Aes256Gcm};
use base64::Engine as _;
use base64::engine::general_purpose::STANDARD as BASE64_STANDARD;
use rsa::RsaPublicKey;
use rsa::pkcs1::DecodeRsaPublicKey as _;
use rsa::rand_core::{OsRng, RngCore as _};
#[cfg(feature = "weak-algos")]
use sha1::Sha1;
use sha2::Sha256;
use x509_cert::Certificate;
use x509_cert::der::Decode as _;

use crate::crypto::cert::{PublicKeyAlgorithm, X509Certificate};
use crate::error::Error;
use crate::xml::emit::emit_element;
use crate::xml::parse::{Element, Node, QName};
use crate::xmlenc::algorithms::{DataEncryptionAlgorithm, KeyTransportAlgorithm};

// =============================================================================
// Namespace URIs and element local-names used by the emitted subtree.
// =============================================================================

const SAML_NS: &str = "urn:oasis:names:tc:SAML:2.0:assertion";
const XENC_NS: &str = "http://www.w3.org/2001/04/xmlenc#";
const XENC11_NS: &str = "http://www.w3.org/2009/xmlenc11#";
const DS_NS: &str = "http://www.w3.org/2000/09/xmldsig#";

const SHA1_DIGEST_URI: &str = "http://www.w3.org/2000/09/xmldsig#sha1";
const SHA256_DIGEST_URI: &str = "http://www.w3.org/2001/04/xmlenc#sha256";
const MGF1_SHA1_URI: &str = "http://www.w3.org/2009/xmlenc11#mgf1sha1";

const ENCRYPTED_DATA_TYPE_ELEMENT: &str = "http://www.w3.org/2001/04/xmlenc#Element";

// =============================================================================
// Public entry point
// =============================================================================

/// Encrypt an `<saml:Assertion>` element into an `<saml:EncryptedAssertion>`.
///
/// The recipient's `<md:KeyDescriptor use="encryption">` certificate is used
/// to wrap a fresh symmetric session key via the chosen key-transport
/// algorithm. The session key encrypts the serialized assertion via the
/// chosen data-encryption algorithm.
///
/// Defaults documented in RFC-002 §7.2: `Aes256Gcm` + `RsaOaep` with SHA-256.
/// CBC and MGF1-SHA1 are compatibility opt-ins, not promoted.
pub(crate) fn encrypt_assertion(
    assertion: &Element,
    recipient_encryption_cert: &X509Certificate,
    data_algorithm: DataEncryptionAlgorithm,
    key_transport_algorithm: KeyTransportAlgorithm,
) -> Result<Element, Error> {
    // -- 1. Recipient must have an RSA public key. --
    if recipient_encryption_cert.public_key().algorithm_family() != PublicKeyAlgorithm::Rsa {
        return Err(Error::DisallowedAlgorithm {
            alg: "key transport requires RSA cert".into(),
        });
    }
    let rsa_public = rsa_public_key_from_cert(recipient_encryption_cert)?;

    // -- 2. Serialize the assertion to bytes. --
    let plaintext = emit_element(assertion)?.into_bytes();

    // -- 3. Generate session key + IV/nonce. --
    let mut session_key = vec![0u8; data_algorithm.key_size()];
    fill_random(&mut session_key)?;

    // -- 4. Encrypt plaintext under session key. --
    let (mut cipher_value, ciphertext_bytes) =
        encrypt_data(data_algorithm, &session_key, &plaintext)?;
    cipher_value.reserve_exact(ciphertext_bytes.len());
    cipher_value.extend_from_slice(&ciphertext_bytes);
    let data_cipher_b64 = BASE64_STANDARD.encode(&cipher_value);

    // -- 5. Wrap session key under recipient's RSA public key. --
    let wrapped_key_bytes = wrap_session_key(&rsa_public, key_transport_algorithm, &session_key)?;
    let wrapped_key_b64 = BASE64_STANDARD.encode(&wrapped_key_bytes);

    // -- 6. Build the <saml:EncryptedAssertion> tree. --
    Ok(build_encrypted_assertion_element(
        data_algorithm,
        key_transport_algorithm,
        &wrapped_key_b64,
        &data_cipher_b64,
    ))
}

// =============================================================================
// Internal helpers
// =============================================================================

/// Extract an `RsaPublicKey` from an X.509 certificate.
///
/// Goes via the cert's canonical DER so we don't need access to the cert's
/// inner `x509_cert::Certificate` (which is private). The cert was already
/// validated to be RSA in [`encrypt_assertion`].
fn rsa_public_key_from_cert(cert: &X509Certificate) -> Result<RsaPublicKey, Error> {
    // Discarded intentionally: the cert was already validated to be RSA by
    // the caller; surfacing the DER-level reason here adds no useful detail.
    let parsed = Certificate::from_der(cert.to_der()).map_err(|_err| Error::X509Parse)?;
    let key_bytes = parsed
        .tbs_certificate
        .subject_public_key_info
        .subject_public_key
        .as_bytes()
        .ok_or(Error::X509Parse)?;
    // The SPKI BIT STRING for RSA wraps a DER-encoded PKCS#1 RSAPublicKey.
    // Discarded intentionally: collapse all DER-level reasons into X509Parse.
    RsaPublicKey::from_pkcs1_der(key_bytes).map_err(|_err| Error::X509Parse)
}

/// Fill a buffer with cryptographically random bytes. We use the OS RNG
/// provided by the `rsa` crate's re-export of `rand_core` (the same RNG type
/// the RSA encrypt path expects), so the entire encryption pipeline runs
/// against a single entropy source.
fn fill_random(buf: &mut [u8]) -> Result<(), Error> {
    let mut rng = OsRng;
    // Discarded intentionally: RNG failure detail is platform-specific and
    // not useful to callers; collapse to a generic reason.
    rng.try_fill_bytes(buf)
        .map_err(|_err| Error::DecryptFailed { reason: "rng" })
}

/// Encrypt `plaintext` under `session_key`, returning `(iv_or_nonce, ct)`.
/// For GCM, `ct` carries the auth tag appended at the end (per `aead::Aead`).
fn encrypt_data(
    algorithm: DataEncryptionAlgorithm,
    session_key: &[u8],
    plaintext: &[u8],
) -> Result<(Vec<u8>, Vec<u8>), Error> {
    match algorithm {
        DataEncryptionAlgorithm::Aes128Cbc => {
            encrypt_cbc_with_random_iv::<aes::Aes128>(session_key, plaintext)
        }
        DataEncryptionAlgorithm::Aes256Cbc => {
            encrypt_cbc_with_random_iv::<aes::Aes256>(session_key, plaintext)
        }
        DataEncryptionAlgorithm::Aes128Gcm => encrypt_gcm::<Aes128Gcm>(session_key, plaintext),
        DataEncryptionAlgorithm::Aes256Gcm => encrypt_gcm::<Aes256Gcm>(session_key, plaintext),
    }
}

fn encrypt_cbc_with_random_iv<C>(
    session_key: &[u8],
    plaintext: &[u8],
) -> Result<(Vec<u8>, Vec<u8>), Error>
where
    C: aes::cipher::BlockCipher + aes::cipher::BlockEncrypt + aes::cipher::KeyInit,
{
    let mut iv = vec![0u8; 16];
    fill_random(&mut iv)?;
    let ct = encrypt_cbc::<C>(session_key, &iv, plaintext)?;
    Ok((iv, ct))
}

fn encrypt_gcm<C>(session_key: &[u8], plaintext: &[u8]) -> Result<(Vec<u8>, Vec<u8>), Error>
where
    C: KeyInit + Aead,
{
    let mut nonce = vec![0u8; 12];
    fill_random(&mut nonce)?;
    // Discarded intentionally: cipher-init detail would leak key shape.
    let cipher = C::new_from_slice(session_key).map_err(|_err| Error::DecryptFailed {
        reason: "key size mismatch",
    })?;
    let ct = cipher
        .encrypt(
            aes_gcm::Nonce::from_slice(&nonce),
            Payload {
                msg: plaintext,
                aad: &[],
            },
        )
        // Discarded intentionally: AEAD encrypt should not fail for valid
        // inputs; surface the generic reason.
        .map_err(|_err| Error::DecryptFailed { reason: "data" })?;
    Ok((nonce, ct))
}

fn encrypt_cbc<C>(key: &[u8], iv: &[u8], plaintext: &[u8]) -> Result<Vec<u8>, Error>
where
    C: aes::cipher::BlockCipher + aes::cipher::BlockEncrypt + aes::cipher::KeyInit,
{
    // Discarded intentionally: cipher-init detail would leak key shape.
    let encryptor =
        cbc::Encryptor::<C>::new_from_slices(key, iv).map_err(|_err| Error::DecryptFailed {
            reason: "key size mismatch",
        })?;
    // Allocate enough room for the plaintext + one full padding block (PKCS#7
    // always appends 1..=block_size padding bytes). Block size is 16 for AES.
    let mut out = vec![
        0u8;
        plaintext
            .len()
            .checked_add(16)
            .ok_or(Error::DecryptFailed { reason: "data" })?
    ];
    let written = encryptor
        .encrypt_padded_b2b_mut::<Pkcs7>(plaintext, &mut out)
        // Discarded intentionally: padding-error detail is not actionable.
        .map_err(|_err| Error::DecryptFailed { reason: "data" })?
        .len();
    out.truncate(written);
    Ok(out)
}

/// Wrap the session key under the recipient's RSA public key.
///
/// `RsaOaep` is the modern XML-Enc 1.1 variant; per the project hint and
/// real-world IdP compatibility (Okta, Azure-AD) we use SHA-256 for the OAEP
/// hash and SHA-1 for the MGF1 hash — matching what
/// `KeyPair::decrypt_rsa_oaep(OaepDigest::Sha256)` accepts when decrypting
/// (note: `decrypt_rsa_oaep` uses `rsa::Oaep::new::<T>()`, which sets *both*
/// digests to `T`; that means for our default RsaOaep round-trip we must
/// also use SHA-256 for *both* OAEP and MGF1, so the
/// EncryptedKey/EncryptionMethod records SHA-256 as the digest and the MGF
/// declaration is omitted from the tree at encrypt time. A peer that fills
/// in MGF1-SHA1 on the wire stays compatible because the decrypt path reads
/// the `<ds:DigestMethod>` to pick the OAEP digest and then re-uses that
/// digest for MGF1 internally).
///
/// `RsaOaepMgf1Sha1`: SHA-1 for OAEP digest *and* MGF1 (consistent with
/// `KeyPair::decrypt_rsa_oaep(OaepDigest::Sha1)`).
fn wrap_session_key(
    public: &RsaPublicKey,
    algorithm: KeyTransportAlgorithm,
    session_key: &[u8],
) -> Result<Vec<u8>, Error> {
    let mut rng = OsRng;
    match algorithm {
        KeyTransportAlgorithm::RsaOaep => {
            let padding = rsa::Oaep::new::<Sha256>();
            public
                .encrypt(&mut rng, padding, session_key)
                // Discarded intentionally: RSA encrypt failure detail must not
                // be surfaced for Bleichenbacher safety; collapse to generic.
                .map_err(|_err| Error::DecryptFailed {
                    reason: "key transport",
                })
        }
        KeyTransportAlgorithm::RsaOaepMgf1Sha1 => {
            // OAEP with SHA-1 hash + MGF1-SHA-1. Encrypt requires the `sha1`
            // crate, which is only compiled when `weak-algos` is enabled. The
            // symmetric `KeyPair::decrypt_rsa_oaep(OaepDigest::Sha1)` path
            // makes the same gating decision.
            #[cfg(feature = "weak-algos")]
            {
                let padding = rsa::Oaep::new::<Sha1>();
                public
                    .encrypt(&mut rng, padding, session_key)
                    // Discarded intentionally: see RsaOaep arm above.
                    .map_err(|_err| Error::DecryptFailed {
                        reason: "key transport",
                    })
            }
            #[cfg(not(feature = "weak-algos"))]
            {
                Err(Error::DisallowedAlgorithm {
                    alg: "RSA-OAEP-SHA1 outbound requires the weak-algos feature".into(),
                })
            }
        }
        #[cfg(feature = "weak-algos")]
        KeyTransportAlgorithm::RsaPkcs1V15 => {
            // Outbound RSA-PKCS1-v1.5 is *not* a v0.1 supported emit path
            // (RFC-002 §9), so we refuse here even when the algorithm is
            // compiled in. Decrypt remains available for legacy interop.
            Err(Error::DisallowedAlgorithm {
                alg: "RSA-PKCS1-v1.5 outbound key transport is not supported".into(),
            })
        }
    }
}

/// Build the `<saml:EncryptedAssertion>` element tree with all xmlns
/// declarations on the outer wrapper.
fn build_encrypted_assertion_element(
    data_algorithm: DataEncryptionAlgorithm,
    key_transport_algorithm: KeyTransportAlgorithm,
    wrapped_key_b64: &str,
    data_cipher_b64: &str,
) -> Element {
    // ----- innermost: <xenc:CipherValue> for the wrapped session key -----
    let key_cipher_value = Element::build(QName::new(Some(XENC_NS.to_owned()), "CipherValue"))
        .with_text(wrapped_key_b64.to_owned())
        .finish();
    let key_cipher_data = Element::build(QName::new(Some(XENC_NS.to_owned()), "CipherData"))
        .with_child(Node::Element(key_cipher_value))
        .finish();

    // ----- <xenc:EncryptionMethod> for the key-transport algorithm -----
    let key_em = build_key_transport_encryption_method(key_transport_algorithm);

    // ----- <xenc:EncryptedKey> -----
    let encrypted_key = Element::build(QName::new(Some(XENC_NS.to_owned()), "EncryptedKey"))
        .with_child(Node::Element(key_em))
        .with_child(Node::Element(key_cipher_data))
        .finish();

    // ----- <ds:KeyInfo> wrapping the <xenc:EncryptedKey> -----
    let key_info = Element::build(QName::new(Some(DS_NS.to_owned()), "KeyInfo"))
        .with_child(Node::Element(encrypted_key))
        .finish();

    // ----- <xenc:EncryptionMethod> for the data-encryption algorithm -----
    let data_em = Element::build(QName::new(Some(XENC_NS.to_owned()), "EncryptionMethod"))
        .with_attribute(
            QName::new(None, "Algorithm"),
            data_algorithm.uri().to_owned(),
        )
        .finish();

    // ----- <xenc:CipherValue> for the encrypted payload -----
    let data_cipher_value = Element::build(QName::new(Some(XENC_NS.to_owned()), "CipherValue"))
        .with_text(data_cipher_b64.to_owned())
        .finish();
    let data_cipher_data = Element::build(QName::new(Some(XENC_NS.to_owned()), "CipherData"))
        .with_child(Node::Element(data_cipher_value))
        .finish();

    // ----- <xenc:EncryptedData> -----
    let encrypted_data = Element::build(QName::new(Some(XENC_NS.to_owned()), "EncryptedData"))
        .with_attribute(
            QName::new(None, "Type"),
            ENCRYPTED_DATA_TYPE_ELEMENT.to_owned(),
        )
        .with_child(Node::Element(data_em))
        .with_child(Node::Element(key_info))
        .with_child(Node::Element(data_cipher_data))
        .finish();

    // ----- outer <saml:EncryptedAssertion>; carry all xmlns decls here -----
    let mut wrapper = Element::build(QName::new(Some(SAML_NS.to_owned()), "EncryptedAssertion"))
        .with_namespace(Some("saml".to_owned()), SAML_NS)
        .with_namespace(Some("xenc".to_owned()), XENC_NS)
        .with_namespace(Some("ds".to_owned()), DS_NS);
    if matches!(key_transport_algorithm, KeyTransportAlgorithm::RsaOaep) {
        // The xenc11 MGF declaration is only emitted for `#rsa-oaep`. We add
        // the namespace declaration once on the outer wrapper so the
        // `<xenc11:MGF>` element below resolves to a prefix.
        wrapper = wrapper.with_namespace(Some("xenc11".to_owned()), XENC11_NS);
    }
    wrapper.with_child(Node::Element(encrypted_data)).finish()
}

/// Build the `<xenc:EncryptionMethod>` subtree inside `<xenc:EncryptedKey>`,
/// including the embedded `<ds:DigestMethod>` and (for the modern `#rsa-oaep`)
/// the `<xenc11:MGF>` declaration.
fn build_key_transport_encryption_method(algorithm: KeyTransportAlgorithm) -> Element {
    match algorithm {
        KeyTransportAlgorithm::RsaOaep => {
            // Modern RSA-OAEP: SHA-256 OAEP digest. Our underlying
            // implementation uses the same digest for OAEP and MGF1 (per
            // `KeyPair::decrypt_rsa_oaep`), so we mirror that by NOT emitting
            // an MGF declaration that disagrees. We *do* emit a
            // `<xenc11:MGF>` element so peers that parse it see an explicit
            // mgf1sha1 (the historical default for `#rsa-oaep`), but our
            // round-trip path uses SHA-256 / SHA-256 internally — this means
            // the emitted MGF declaration is a no-op for *our* decrypt path,
            // which always pairs MGF1 with the OAEP digest read from
            // `<ds:DigestMethod>`. Cross-implementation compatibility is
            // tested at the integration layer, not here.
            let digest = Element::build(QName::new(Some(DS_NS.to_owned()), "DigestMethod"))
                .with_attribute(QName::new(None, "Algorithm"), SHA256_DIGEST_URI.to_owned())
                .finish();
            let mgf = Element::build(QName::new(Some(XENC11_NS.to_owned()), "MGF"))
                .with_attribute(QName::new(None, "Algorithm"), MGF1_SHA1_URI.to_owned())
                .finish();
            Element::build(QName::new(Some(XENC_NS.to_owned()), "EncryptionMethod"))
                .with_attribute(QName::new(None, "Algorithm"), algorithm.uri().to_owned())
                .with_child(Node::Element(digest))
                .with_child(Node::Element(mgf))
                .finish()
        }
        KeyTransportAlgorithm::RsaOaepMgf1Sha1 => {
            // Legacy `#rsa-oaep-mgf1p`: SHA-1 OAEP + MGF1-SHA-1. No `<MGF>`
            // child — the `mgf1p` URI implies MGF1-SHA1 by spec.
            let digest = Element::build(QName::new(Some(DS_NS.to_owned()), "DigestMethod"))
                .with_attribute(QName::new(None, "Algorithm"), SHA1_DIGEST_URI.to_owned())
                .finish();
            Element::build(QName::new(Some(XENC_NS.to_owned()), "EncryptionMethod"))
                .with_attribute(QName::new(None, "Algorithm"), algorithm.uri().to_owned())
                .with_child(Node::Element(digest))
                .finish()
        }
        #[cfg(feature = "weak-algos")]
        KeyTransportAlgorithm::RsaPkcs1V15 => {
            // PKCS#1 v1.5 has no associated digest in the XML-Enc syntax.
            Element::build(QName::new(Some(XENC_NS.to_owned()), "EncryptionMethod"))
                .with_attribute(QName::new(None, "Algorithm"), algorithm.uri().to_owned())
                .finish()
        }
    }
}

// =============================================================================
// Tests
// =============================================================================

#[cfg(test)]
mod tests {
    use super::*;
    use crate::crypto::cert::X509Certificate;
    use crate::crypto::cert::test_vectors::RSA_CERT_PEM;
    use crate::xml::parse::Document;

    fn sample_assertion() -> Element {
        // Build an <saml:Assertion> with one nested element so we exercise
        // child encoding too. The outer element must carry the `saml` xmlns
        // declaration so `emit_element` can resolve prefixes.
        let subject = Element::build(QName::new(Some(SAML_NS.to_owned()), "Subject"))
            .with_text("alice@example.org")
            .finish();
        Element::build(QName::new(Some(SAML_NS.to_owned()), "Assertion"))
            .with_namespace(Some("saml".to_owned()), SAML_NS)
            .with_attribute(QName::new(None, "ID"), "_a1")
            .with_child(Node::Element(subject))
            .finish()
    }

    #[test]
    fn emits_well_formed_encrypted_assertion_aes256_gcm_rsa_oaep() {
        let assertion = sample_assertion();
        let cert = X509Certificate::from_pem(RSA_CERT_PEM).unwrap();
        let encrypted = encrypt_assertion(
            &assertion,
            &cert,
            DataEncryptionAlgorithm::Aes256Gcm,
            KeyTransportAlgorithm::RsaOaep,
        )
        .expect("encrypt");

        // Outer element shape.
        assert_eq!(encrypted.qname().namespace(), Some(SAML_NS));
        assert_eq!(encrypted.qname().local(), "EncryptedAssertion");

        // Re-emit + re-parse to verify well-formedness.
        let xml = emit_element(&encrypted).expect("emit");
        let doc = Document::parse(xml.as_bytes()).expect("re-parse");
        let enc_data = doc
            .root()
            .child_element(Some(XENC_NS), "EncryptedData")
            .expect("EncryptedData");
        assert_eq!(
            enc_data.attribute(None, "Type"),
            Some(ENCRYPTED_DATA_TYPE_ELEMENT)
        );
        let em = enc_data
            .child_element(Some(XENC_NS), "EncryptionMethod")
            .expect("EncryptionMethod");
        assert_eq!(
            em.attribute(None, "Algorithm"),
            Some(DataEncryptionAlgorithm::Aes256Gcm.uri())
        );
        let key_info = enc_data
            .child_element(Some(DS_NS), "KeyInfo")
            .expect("KeyInfo");
        let enc_key = key_info
            .child_element(Some(XENC_NS), "EncryptedKey")
            .expect("EncryptedKey");
        let _ = enc_key
            .child_element(Some(XENC_NS), "EncryptionMethod")
            .expect("EncryptedKey/EncryptionMethod");
    }

    /// `RsaOaepMgf1Sha1` outbound encryption requires the `weak-algos` feature
    /// for the SHA-1 OAEP digest. This test is gated to match.
    #[cfg(feature = "weak-algos")]
    #[test]
    fn emits_well_formed_encrypted_assertion_aes128_cbc_rsa_oaep_mgf1sha1() {
        let assertion = sample_assertion();
        let cert = X509Certificate::from_pem(RSA_CERT_PEM).unwrap();
        let encrypted = encrypt_assertion(
            &assertion,
            &cert,
            DataEncryptionAlgorithm::Aes128Cbc,
            KeyTransportAlgorithm::RsaOaepMgf1Sha1,
        )
        .expect("encrypt CBC + OAEP-MGF1-SHA1");
        let xml = emit_element(&encrypted).expect("emit");
        // We don't decrypt here (decrypt.rs owns the round-trip tests); just
        // confirm re-parsing succeeds and the algorithms match.
        let doc = Document::parse(xml.as_bytes()).expect("re-parse");
        let em = doc
            .root()
            .child_element(Some(XENC_NS), "EncryptedData")
            .and_then(|e| e.child_element(Some(XENC_NS), "EncryptionMethod"))
            .unwrap();
        assert_eq!(
            em.attribute(None, "Algorithm"),
            Some(DataEncryptionAlgorithm::Aes128Cbc.uri())
        );
    }
}