summaryrefslogtreecommitdiffstats
path: root/vendor/der/src/error.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/der/src/error.rs
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/der/src/error.rs')
-rw-r--r--vendor/der/src/error.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/der/src/error.rs b/vendor/der/src/error.rs
index 94378ef71..902863d49 100644
--- a/vendor/der/src/error.rs
+++ b/vendor/der/src/error.rs
@@ -227,6 +227,9 @@ pub enum ErrorKind {
oid: ObjectIdentifier,
},
+ /// `SET` cannot contain duplicates.
+ SetDuplicate,
+
/// `SET` ordering error: items not in canonical order.
SetOrdering,
@@ -329,6 +332,7 @@ impl fmt::Display for ErrorKind {
ErrorKind::OidUnknown { oid } => {
write!(f, "unknown/unsupported OID: {}", oid)
}
+ ErrorKind::SetDuplicate => write!(f, "SET OF contains duplicate"),
ErrorKind::SetOrdering => write!(f, "SET OF ordering error"),
ErrorKind::Overflow => write!(f, "integer overflow"),
ErrorKind::Overlength => write!(f, "ASN.1 DER message is too long"),