@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
23 lines • 612 B
text/typescript
import type { ATTRIBUTE } from "@wildboar/x500/InformationFramework";
import { ContentType } from "../PKCS-9/ContentType.ta.mjs";
/**
* @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>;
//# sourceMappingURL=contentType.oa.d.mts.map