UNPKG

@peculiar/asn1-x509

Version:

ASN.1 schema for X.509 certificates, certificate revocation lists, and related profile structures defined in RFC 5280.

14 lines (13 loc) 309 B
/** * ```asn1 * Attribute ::= SEQUENCE { * type AttributeType, * values SET OF AttributeValue } * -- at least one value is required * ``` */ export declare class Attribute { type: string; values: ArrayBuffer[]; constructor(params?: Partial<Attribute>); }