Skip to content

ConstrainedPolicy

One policy OID that survives RFC 5280 / RFC 9618 processing.

ts
interface ConstrainedPolicy {
	readonly policyIdentifier: string;
	readonly policyQualifiers?: readonly PolicyQualifierInfo[];
}

Properties

  • readonly policyIdentifier: string — Dotted-decimal OID of the surviving policy.
  • readonly policyQualifiers?: readonly PolicyQualifierInfo[] — Qualifier info (CPS URIs, user notices) attached to this policy, if any.

Released under the MIT License.