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
//! EnvelopedData-related types
use crate::cert::IssuerAndSerialNumber;
use crate::content_info::CmsVersion;
use crate::revocation::RevocationInfoChoices;
use crate::signed_data::CertificateSet;
use core::cmp::Ordering;
use der::asn1::{BitString, GeneralizedTime, ObjectIdentifier, OctetString, SetOfVec};
use der::{Any, Choice, Sequence, ValueOrd};
use spki::AlgorithmIdentifierOwned;
use x509_cert::attr::{Attribute, Attributes};
use x509_cert::ext::pkix::SubjectKeyIdentifier;
use x509_cert::impl_newtype;
/// The `EnvelopedData` type is defined in [RFC 5652 Section 6.1].
///
/// ```text
/// EnvelopedData ::= SEQUENCE {
/// version CMSVersion,
/// originatorInfo [0] IMPLICIT OriginatorInfo OPTIONAL,
/// recipientInfos RecipientInfos,
/// encryptedContentInfo EncryptedContentInfo,
/// ...,
/// [[2: unprotectedAttrs [1] IMPLICIT Attributes
/// {{ UnprotectedEnvAttributes }} OPTIONAL ]] }
/// ```
///
/// [RFC 5652 Section 6.1]: https://www.rfc-editor.org/rfc/rfc5652#section-6.1
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct EnvelopedData {
pub version: CmsVersion,
#[asn1(
context_specific = "0",
tag_mode = "IMPLICIT",
constructed = "true",
optional = "true"
)]
pub originator_info: Option<OriginatorInfo>,
pub recip_infos: RecipientInfos,
pub encrypted_content: EncryptedContentInfo,
#[asn1(
context_specific = "1",
tag_mode = "IMPLICIT",
constructed = "true",
optional = "true"
)]
pub unprotected_attrs: Option<Attributes>,
}
/// The `OriginatorInfo` type is defined in [RFC 5652 Section 6.1].
///
/// ```text
/// OriginatorInfo ::= SEQUENCE {
/// certs [0] IMPLICIT CertificateSet OPTIONAL,
/// crls [1] IMPLICIT RevocationInfoChoices OPTIONAL }
/// ```
///
/// [RFC 5652 Section 6.1]: https://www.rfc-editor.org/rfc/rfc5652#section-6.1
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct OriginatorInfo {
#[asn1(
context_specific = "0",
tag_mode = "IMPLICIT",
constructed = "true",
optional = "true"
)]
pub certs: Option<CertificateSet>,
#[asn1(
context_specific = "1",
tag_mode = "IMPLICIT",
constructed = "true",
optional = "true"
)]
pub crls: Option<RevocationInfoChoices>,
}
/// The `RecipientInfos` type is defined in [RFC 5652 Section 6.1].
///
/// ```text
/// RecipientInfos ::= SET SIZE (1..MAX) OF RecipientInfo
/// ```
///
/// [RFC 5652 Section 6.1]: https://www.rfc-editor.org/rfc/rfc5652#section-6.1
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct RecipientInfos(pub SetOfVec<RecipientInfo>);
impl_newtype!(RecipientInfos, SetOfVec<RecipientInfo>);
#[cfg(feature = "std")]
impl TryFrom<std::vec::Vec<RecipientInfo>> for RecipientInfos {
type Error = der::Error;
fn try_from(vec: std::vec::Vec<RecipientInfo>) -> der::Result<RecipientInfos> {
Ok(RecipientInfos(SetOfVec::try_from(vec)?))
}
}
/// The `EncryptedContentInfo` type is defined in [RFC 5652 Section 6.1].
///
/// ```text
/// EncryptedContentInfo ::= SEQUENCE {
/// contentType ContentType,
/// contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier,
/// encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL }
/// ```
///
/// [RFC 5652 Section 6.1]: https://www.rfc-editor.org/rfc/rfc5652#section-6.1
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct EncryptedContentInfo {
pub content_type: ObjectIdentifier,
pub content_enc_alg: AlgorithmIdentifierOwned,
#[asn1(context_specific = "0", tag_mode = "IMPLICIT", optional = "true")]
pub encrypted_content: Option<OctetString>,
}
/// The `RecipientInfo` type is defined in [RFC 5652 Section 6.2].
///
/// ```text
/// RecipientInfo ::= CHOICE {
/// ktri KeyTransRecipientInfo,
/// ...,
/// [[3: kari [1] KeyAgreeRecipientInfo ]],
/// [[4: kekri [2] KEKRecipientInfo]],
/// [[5: pwri [3] PasswordRecipientInfo,
/// ori [4] OtherRecipientInfo ]] }
/// ```
///
/// [RFC 5652 Section 6.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2
#[derive(Clone, Debug, Eq, PartialEq, Choice)]
#[allow(missing_docs)]
pub enum RecipientInfo {
Ktri(KeyTransRecipientInfo),
#[asn1(context_specific = "1", tag_mode = "IMPLICIT", constructed = "true")]
Kari(KeyAgreeRecipientInfo),
#[asn1(context_specific = "2", tag_mode = "IMPLICIT", constructed = "true")]
Kekri(KekRecipientInfo),
#[asn1(context_specific = "3", tag_mode = "IMPLICIT", constructed = "true")]
Pwri(PasswordRecipientInfo),
#[asn1(context_specific = "4", tag_mode = "IMPLICIT", constructed = "true")]
Ori(OtherRecipientInfo),
}
impl ValueOrd for RecipientInfo {
fn value_cmp(&self, other: &Self) -> der::Result<Ordering> {
use der::DerOrd;
use der::Encode;
self.to_der()?.der_cmp(&other.to_der()?)
}
}
/// The `EncryptedKey` type is defined in [RFC 5652 Section 6.2].
///
/// ```text
/// EncryptedKey ::= OCTET STRING
/// ```
///
/// [RFC 5652 Section 6.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2
pub type EncryptedKey = OctetString;
/// The `KeyTransRecipientInfo` type is defined in [RFC 5652 Section 6.2.1].
///
/// ```text
/// KeyTransRecipientInfo ::= SEQUENCE {
/// version CMSVersion, -- always set to 0 or 2
/// rid RecipientIdentifier,
/// keyEncryptionAlgorithm AlgorithmIdentifier
/// {KEY-TRANSPORT, {KeyTransportAlgorithmSet}},
/// encryptedKey EncryptedKey }
/// ```
///
/// [RFC 5652 Section 6.2.1]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.1
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct KeyTransRecipientInfo {
pub version: CmsVersion,
pub rid: RecipientIdentifier,
pub key_enc_alg: AlgorithmIdentifierOwned,
pub enc_key: EncryptedKey,
}
/// The `RecipientIdentifier` type is defined in [RFC 5652 Section 6.2.1].
///
/// ```text
/// RecipientIdentifier ::= CHOICE {
/// issuerAndSerialNumber IssuerAndSerialNumber,
/// ...,
/// [[2: subjectKeyIdentifier [0] SubjectKeyIdentifier ]] }
/// ```
///
/// [RFC 5652 Section 6.2.1]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.1
#[derive(Clone, Debug, Eq, PartialEq, Choice)]
#[allow(missing_docs)]
pub enum RecipientIdentifier {
IssuerAndSerialNumber(IssuerAndSerialNumber),
#[asn1(context_specific = "0", tag_mode = "IMPLICIT")]
SubjectKeyIdentifier(SubjectKeyIdentifier),
}
/// The `KeyAgreeRecipientInfo` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// KeyAgreeRecipientInfo ::= SEQUENCE {
/// version CMSVersion, -- always set to 3
/// originator [0] EXPLICIT OriginatorIdentifierOrKey,
/// ukm [1] EXPLICIT UserKeyingMaterial OPTIONAL,
/// keyEncryptionAlgorithm AlgorithmIdentifier
/// {KEY-AGREE, {KeyAgreementAlgorithmSet}},
/// recipientEncryptedKeys RecipientEncryptedKeys }
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct KeyAgreeRecipientInfo {
pub version: CmsVersion,
#[asn1(context_specific = "0", tag_mode = "EXPLICIT")]
pub originator: OriginatorIdentifierOrKey,
#[asn1(context_specific = "1", tag_mode = "EXPLICIT", optional = "true")]
pub ukm: Option<UserKeyingMaterial>,
pub key_enc_alg: AlgorithmIdentifierOwned,
pub recipient_enc_keys: RecipientEncryptedKeys,
}
/// The `OriginatorIdentifierOrKey` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// OriginatorIdentifierOrKey ::= CHOICE {
/// issuerAndSerialNumber IssuerAndSerialNumber,
/// subjectKeyIdentifier [0] SubjectKeyIdentifier,
/// originatorKey [1] OriginatorPublicKey }
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
#[derive(Clone, Debug, Eq, PartialEq, Choice)]
#[allow(missing_docs)]
pub enum OriginatorIdentifierOrKey {
IssuerAndSerialNumber(IssuerAndSerialNumber),
#[asn1(context_specific = "0", tag_mode = "IMPLICIT")]
SubjectKeyIdentifier(SubjectKeyIdentifier),
#[asn1(context_specific = "1", tag_mode = "IMPLICIT", constructed = "true")]
OriginatorKey(OriginatorPublicKey),
}
/// The `OriginatorPublicKey` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// OriginatorPublicKey ::= SEQUENCE {
/// algorithm AlgorithmIdentifier {PUBLIC-KEY, {OriginatorKeySet}},
/// publicKey BIT STRING }
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct OriginatorPublicKey {
pub algorithm: AlgorithmIdentifierOwned,
pub public_key: BitString,
}
/// The `RecipientEncryptedKeys` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// RecipientEncryptedKeys ::= SEQUENCE OF RecipientEncryptedKey
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
pub type RecipientEncryptedKeys = alloc::vec::Vec<RecipientEncryptedKey>;
/// The `RecipientEncryptedKey` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// RecipientEncryptedKey ::= SEQUENCE {
/// rid KeyAgreeRecipientIdentifier,
/// encryptedKey EncryptedKey }
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct RecipientEncryptedKey {
pub rid: KeyAgreeRecipientIdentifier,
pub enc_key: EncryptedKey,
}
/// The `KeyAgreeRecipientIdentifier` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// KeyAgreeRecipientIdentifier ::= CHOICE {
/// issuerAndSerialNumber IssuerAndSerialNumber,
/// rKeyId [0] IMPLICIT RecipientKeyIdentifier }
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
#[derive(Clone, Debug, Eq, PartialEq, Choice)]
#[allow(missing_docs)]
pub enum KeyAgreeRecipientIdentifier {
IssuerAndSerialNumber(IssuerAndSerialNumber),
#[asn1(context_specific = "0", tag_mode = "IMPLICIT")]
RKeyId(RecipientKeyIdentifier),
}
/// The `RecipientKeyIdentifier` type is defined in [RFC 5652 Section 6.2.2].
///
/// ```text
/// RecipientKeyIdentifier ::= SEQUENCE {
/// subjectKeyIdentifier SubjectKeyIdentifier,
/// date GeneralizedTime OPTIONAL,
/// other OtherKeyAttribute OPTIONAL }
/// ```
///
/// [RFC 5652 Section 6.2.2]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.2
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct RecipientKeyIdentifier {
pub subject_key_identifier: SubjectKeyIdentifier,
pub date: Option<GeneralizedTime>,
pub other: Option<Attribute>,
}
// SubjectKeyIdentifier ::= OCTET STRING
// reusing from x509-cert crate
/// The `KEKRecipientInfo` type is defined in [RFC 5652 Section 6.2.3].
///
/// ```text
/// KEKRecipientInfo ::= SEQUENCE {
/// version CMSVersion, -- always set to 4
/// kekid KEKIdentifier,
/// keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
/// encryptedKey EncryptedKey }
/// ```
///
/// [RFC 5652 Section 6.2.3]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.3
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct KekRecipientInfo {
pub version: CmsVersion,
pub kek_id: KekIdentifier,
pub key_enc_alg: AlgorithmIdentifierOwned,
pub encrypted_key: EncryptedKey,
}
/// The `KEKIdentifier` type is defined in [RFC 5652 Section 6.2.3].
///
/// ```text
/// KEKIdentifier ::= SEQUENCE {
/// keyIdentifier OCTET STRING,
/// date GeneralizedTime OPTIONAL,
/// other OtherKeyAttribute OPTIONAL }
/// ```
///
/// [RFC 5652 Section 6.2.3]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.3
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct KekIdentifier {
pub kek_identifier: OctetString,
pub date: Option<GeneralizedTime>,
pub other: Option<Attribute>,
}
/// The `PasswordRecipientInfo` type is defined in [RFC 5652 Section 6.2.4].
///
/// ```text
/// PasswordRecipientInfo ::= SEQUENCE {
/// version CMSVersion, -- always set to 0
/// keyDerivationAlgorithm [0] KeyDerivationAlgorithmIdentifier
/// OPTIONAL,
/// keyEncryptionAlgorithm KeyEncryptionAlgorithmIdentifier,
/// encryptedKey EncryptedKey }
/// ```
///
/// [RFC 5652 Section 6.2.4]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.4
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct PasswordRecipientInfo {
pub version: CmsVersion,
#[asn1(
context_specific = "0",
tag_mode = "IMPLICIT",
constructed = "true",
optional = "true"
)]
pub key_derivation_alg: Option<AlgorithmIdentifierOwned>,
pub key_enc_alg: AlgorithmIdentifierOwned,
pub enc_key: EncryptedKey,
}
/// The `OtherRecipientInfo` type is defined in [RFC 5652 Section 6.2.5].
///
/// ```text
/// OtherRecipientInfo ::= SEQUENCE {
/// oriType OTHER-RECIPIENT.
/// &id({SupportedOtherRecipInfo}),
/// oriValue OTHER-RECIPIENT.
/// &Type({SupportedOtherRecipInfo}{@oriType})}
/// ```
///
/// [RFC 5652 Section 6.2.5]: https://www.rfc-editor.org/rfc/rfc5652#section-6.2.5
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
#[allow(missing_docs)]
pub struct OtherRecipientInfo {
pub ori_type: ObjectIdentifier,
pub ori_value: Any,
}
/// The `UserKeyingMaterial` type is defined in [RFC 5652 Section 10.2.6].
///
/// ```text
/// UserKeyingMaterial ::= OCTET STRING
/// ```
///
/// [RFC 5652 Section 10.2.5]: https://www.rfc-editor.org/rfc/rfc5652#section-10.2.5
pub type UserKeyingMaterial = OctetString;