Skip to content

PolicyConstraints

RFC 5280 §4.2.1.11 Policy Constraints.

At least one field must be present. Values are certificate-count thresholds measured from the current certificate toward the end entity.

ts
interface PolicyConstraints {
	readonly requireExplicitPolicy?: number;
	readonly inhibitPolicyMapping?: number;
}

Properties

  • readonly requireExplicitPolicy?: number — After this many certificates, an acceptable policy must be in the path.
  • readonly inhibitPolicyMapping?: number — After this many certificates, policy mapping is no longer allowed.

Released under the MIT License.