UNPKG

@peculiar/asn1-x509

Version:

ASN.1 schema of `Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile` (RFC5280)

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>); }