UNPKG

pkcs-ts

Version:

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

10 lines 1.41 kB
import { ASN1Element as _Element, NULL } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { CommonAuthenticationObjectAttributes } from "../PKCS-15/CommonAuthenticationObjectAttributes.ta"; import { PKCS15Object } from "../PKCS-15/PKCS15Object.ta"; export { CommonAuthenticationObjectAttributes, _decode_CommonAuthenticationObjectAttributes, _encode_CommonAuthenticationObjectAttributes, } from "../PKCS-15/CommonAuthenticationObjectAttributes.ta"; export { PKCS15Object, _get_decoder_for_PKCS15Object, _get_encoder_for_PKCS15Object, } from "../PKCS-15/PKCS15Object.ta"; export declare type AuthenticationObject<AuthObjectAttributes> = PKCS15Object<CommonAuthenticationObjectAttributes, NULL, AuthObjectAttributes>; export declare function _get_decoder_for_AuthenticationObject<AuthObjectAttributes>(_decode_AuthObjectAttributes: $.ASN1Decoder<AuthObjectAttributes>): (el: _Element) => PKCS15Object<CommonAuthenticationObjectAttributes, null, AuthObjectAttributes>; export declare function _get_encoder_for_AuthenticationObject<AuthObjectAttributes>(_encode_AuthObjectAttributes: $.ASN1Encoder<AuthObjectAttributes>): (value: PKCS15Object<CommonAuthenticationObjectAttributes, null, AuthObjectAttributes>, elGetter: $.ASN1Encoder<PKCS15Object<CommonAuthenticationObjectAttributes, null, AuthObjectAttributes>>) => _Element; //# sourceMappingURL=AuthenticationObject.ta.d.ts.map