UNPKG

@wildboar/pkcs

Version:
23 lines (22 loc) 593 B
import type { ATTRIBUTE } from "@wildboar/x500/src/lib/modules/InformationFramework/ATTRIBUTE.oca"; import { ContentType } from "../PKCS-9/ContentType.ta"; /** * @summary contentType * @description * * ### ASN.1 Definition: * * ```asn1 * contentType ATTRIBUTE ::= { * WITH SYNTAX ContentType * EQUALITY MATCHING RULE objectIdentifierMatch * SINGLE VALUE TRUE * ID pkcs-9-at-contentType * } * ``` * * @constant * @type {ATTRIBUTE<ContentType>} * @implements {ATTRIBUTE<ContentType>} */ export declare const contentType: ATTRIBUTE<ContentType>;