Skip to content

Commit 3f54105

Browse files
committed
pkcs7: add ValueOrd impls
Followup from #813
1 parent 414f439 commit 3f54105

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

pkcs7/src/cms_version.rs

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! `CMSVersion` [RFC 5652 § 10.2.5](https://datatracker.ietf.org/doc/html/rfc5652#section-10.2.5)
22
3-
use der::Enumerated;
3+
use core::cmp::Ordering;
4+
use der::{Enumerated, ValueOrd};
45

56
/// The CMSVersion type gives a syntax version number, for compatibility
67
/// with future revisions of this specification.
@@ -10,7 +11,7 @@ use der::Enumerated;
1011
/// ```
1112
///
1213
/// See [RFC 5652 10.2.5](https://datatracker.ietf.org/doc/html/rfc5652#section-10.2.5).
13-
#[derive(Clone, Copy, Debug, Enumerated, Eq, PartialEq)]
14+
#[derive(Clone, Copy, Debug, Enumerated, Eq, PartialEq, PartialOrd, Ord)]
1415
#[asn1(type = "INTEGER")]
1516
#[repr(u8)]
1617
pub enum CmsVersion {
@@ -27,3 +28,16 @@ pub enum CmsVersion {
2728
/// syntax version 5
2829
V5 = 5,
2930
}
31+
32+
impl From<CmsVersion> for u8 {
33+
fn from(version: CmsVersion) -> u8 {
34+
version as u8
35+
}
36+
}
37+
38+
// TODO(tarcieri): fix `ValueOrd` derive for this case (`asn1` attribute is clashing)
39+
impl ValueOrd for CmsVersion {
40+
fn value_cmp(&self, other: &Self) -> der::Result<Ordering> {
41+
Ok(self.cmp(other))
42+
}
43+
}

pkcs7/src/signer_info.rs

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//! `SignerInfo` data type [RFC 5652 § 5.3](https://datatracker.ietf.org/doc/html/rfc5652#section-5.3)
22
3-
use core::cmp::Ordering;
4-
53
use crate::cms_version::CmsVersion;
64
use der::{
75
asn1::{OctetStringRef, SetOfVec},
@@ -37,7 +35,7 @@ type UnsignedAttributes<'a> = SetOfVec<Attribute>;
3735
// issuerAndSerialNumber IssuerAndSerialNumber,
3836
// subjectKeyIdentifier [0] SubjectKeyIdentifier }
3937
/// ```
40-
#[derive(Clone, Debug, PartialEq, Eq, Choice)]
38+
#[derive(Clone, Debug, PartialEq, Eq, Choice, ValueOrd)]
4139
pub enum SignerIdentifier<'a> {
4240
/// issuer and serial number
4341
IssuerAndSerialNumber(IssuerAndSerialNumber),
@@ -47,7 +45,7 @@ pub enum SignerIdentifier<'a> {
4745
SubjectKeyIdentifier(SubjectKeyIdentifier<'a>),
4846
}
4947

50-
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
48+
#[derive(Clone, Debug, Eq, PartialEq, Sequence, ValueOrd)]
5149
#[allow(missing_docs)]
5250
pub struct IssuerAndSerialNumber {
5351
pub name: Name,
@@ -71,7 +69,7 @@ pub type SignerInfos<'a> = SetOfVec<SignerInfo<'a>>;
7169
/// signature SignatureValue,
7270
/// unsignedAttrs [1] IMPLICIT UnsignedAttributes OPTIONAL }
7371
/// ```
74-
#[derive(Clone, Debug, Eq, PartialEq, Sequence)]
72+
#[derive(Clone, Debug, Eq, PartialEq, Sequence, ValueOrd)]
7573
pub struct SignerInfo<'a> {
7674
/// the syntax version number.
7775
pub version: CmsVersion,
@@ -96,10 +94,3 @@ pub struct SignerInfo<'a> {
9694
#[asn1(context_specific = "1", tag_mode = "IMPLICIT", optional = "true")]
9795
pub unsigned_attributes: Option<UnsignedAttributes<'a>>,
9896
}
99-
100-
// TODO: figure out what ordering makes sense - if any
101-
impl ValueOrd for SignerInfo<'_> {
102-
fn value_cmp(&self, _other: &Self) -> der::Result<Ordering> {
103-
Ok(Ordering::Equal)
104-
}
105-
}

0 commit comments

Comments
 (0)