Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions limbo-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
"name-constraint-dn",
"pedantic-webpki-subscriber-key",
"pedantic-webpki-eku",
"pedantic-smime-eku",
"pedantic-smime-subscriber-key",
"pedantic-serial-number",
"max-chain-depth",
"pedantic-rfc5280",
Expand Down
12 changes: 11 additions & 1 deletion limbo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,16 @@ class Feature(StrEnum):
Tests that exercise "pedantic" EKU handling under CABF.
"""

pedantic_smime_eku = "pedantic-smime-eku"
"""
Tests that exercise "pedantic" EKU handling under S/MIME BR.
"""

pedantic_smime_subscriber_key = "pedantic-smime-subscriber-key"
"""
Tests that exercise "pedantic" handling of subscriber key types under S/MIME BR.
"""

pedantic_serial_number = "pedantic-serial-number"
"""
Tests that exercise "pedantic" serial number handling.
Expand All @@ -202,7 +212,7 @@ class Feature(StrEnum):

pedantic_rfc5280 = "pedantic-rfc5280"
"""
Tests that exercise "pednatic" corners of the RFC 5280 certificate profile.
Tests that exercise "pedantic" corners of the RFC 5280 certificate profile.
"""

rfc5280_incompatible_with_webpki = "rfc5280-incompatible-with-webpki"
Expand Down
1 change: 1 addition & 0 deletions limbo/testcases/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .pathlen import * # noqa: F403
from .pathological import * # noqa: F403
from .rfc5280 import * # noqa: F403
from .smime import * # noqa: F403
from .webpki import * # noqa: F403

__all__ = [
Expand Down
Loading
Loading