UNPKG

pkcs-ts

Version:

PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More

18 lines 1.12 kB
import { ASN1Element as _Element, OBJECT_IDENTIFIER } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { AttributeValue } from "../CryptographicMessageSyntax/AttributeValue.ta"; export { AttributeValue, _decode_AttributeValue, _encode_AttributeValue, } from "../CryptographicMessageSyntax/AttributeValue.ta"; export declare class Attribute { readonly attrType: OBJECT_IDENTIFIER; readonly attrValues: AttributeValue[]; constructor(attrType: OBJECT_IDENTIFIER, attrValues: AttributeValue[]); static _from_object(_o: { [_K in keyof Attribute]: Attribute[_K]; }): Attribute; } export declare const _root_component_type_list_1_spec_for_Attribute: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_Attribute: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_Attribute: $.ComponentSpec[]; export declare function _decode_Attribute(el: _Element): Attribute; export declare function _encode_Attribute(value: Attribute, elGetter: $.ASN1Encoder<Attribute>): _Element; //# sourceMappingURL=Attribute.ta.d.ts.map