ess-ts
Version:
Enhanced Security Services (ESS) in TypeScript
21 lines • 1.55 kB
TypeScript
import { ASN1Element as _Element, OCTET_STRING } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { ContentType } from "../CryptographicMessageSyntax2004/ContentType.ta";
import { ContentIdentifier } from "../ExtendedSecurityServices-2006/ContentIdentifier.ta";
export { ContentType, _decode_ContentType, _encode_ContentType, } from "../CryptographicMessageSyntax2004/ContentType.ta";
export { ContentIdentifier, _decode_ContentIdentifier, _encode_ContentIdentifier, } from "../ExtendedSecurityServices-2006/ContentIdentifier.ta";
export declare class ContentReference {
readonly contentType: ContentType;
readonly signedContentIdentifier: ContentIdentifier;
readonly originatorSignatureValue: OCTET_STRING;
constructor(contentType: ContentType, signedContentIdentifier: ContentIdentifier, originatorSignatureValue: OCTET_STRING);
static _from_object(_o: {
[_K in keyof ContentReference]: ContentReference[_K];
}): ContentReference;
}
export declare const _root_component_type_list_1_spec_for_ContentReference: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_ContentReference: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_ContentReference: $.ComponentSpec[];
export declare function _decode_ContentReference(el: _Element): ContentReference;
export declare function _encode_ContentReference(value: ContentReference, elGetter: $.ASN1Encoder<ContentReference>): _Element;
//# sourceMappingURL=ContentReference.ta.d.ts.map