use crate::{
header::HeaderValue,
jwa::{JsonWebContentEncryptionAlgorithm, JsonWebEncryptionAlgorithm},
sealed::Sealed,
};
#[derive(Debug)]
#[non_exhaustive]
pub struct Jwe {
pub(crate) algorithm: HeaderValue<JsonWebEncryptionAlgorithm>,
pub(crate) content_encryption_algorithm: HeaderValue<JsonWebContentEncryptionAlgorithm>,
}
impl Sealed for Jwe {}