pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
14 lines • 1.1 kB
TypeScript
import { ASN1Element as _Element } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { AuthKeyAttributes } from "../PKCS-15/AuthKeyAttributes.ta";
import { CertBasedAuthenticationAttributes } from "../PKCS-15/CertBasedAuthenticationAttributes.ta";
export { AuthKeyAttributes, _decode_AuthKeyAttributes, _encode_AuthKeyAttributes, } from "../PKCS-15/AuthKeyAttributes.ta";
export { CertBasedAuthenticationAttributes, _decode_CertBasedAuthenticationAttributes, _encode_CertBasedAuthenticationAttributes, } from "../PKCS-15/CertBasedAuthenticationAttributes.ta";
export declare type ExternalAuthObjectAttributes = {
authKeyAttributes: AuthKeyAttributes;
} | {
certBasedAttributes: CertBasedAuthenticationAttributes;
} | _Element;
export declare function _decode_ExternalAuthObjectAttributes(el: _Element): ExternalAuthObjectAttributes;
export declare function _encode_ExternalAuthObjectAttributes(value: ExternalAuthObjectAttributes, elGetter: $.ASN1Encoder<ExternalAuthObjectAttributes>): _Element;
//# sourceMappingURL=ExternalAuthObjectAttributes.ta.d.ts.map