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
readonlymethod:ocsp|caIssuers| {readonlytype:oid;readonlyvalue:string} — Access method ('ocsp','caIssuers', or custom OID).readonlyuri:string— URI where the resource can be fetched.