Skip to content

AuthorityInformationAccess

A single entry in the Authority Information Access extension (RFC 5280 §4.2.2.1).

ts
interface AuthorityInformationAccess {
	readonly method: ocsp | caIssuers | {
  readonly type: oid;
  readonly value: string
};
	readonly uri: string;
}

Properties

  • readonly method: ocsp | caIssuers | { readonly type: oid; readonly value: string } — Access method ('ocsp', 'caIssuers', or custom OID).
  • readonly uri: string — URI where the resource can be fetched.

Released under the MIT License.