UNPKG

@wildboar/pkcs

Version:
24 lines 651 B
import { PrintableString } from "@wildboar/asn1"; import type { ATTRIBUTE } from "@wildboar/x500/InformationFramework"; /** * @summary gender * @description * * ### ASN.1 Definition: * * ```asn1 * gender ATTRIBUTE ::= { * WITH SYNTAX PrintableString (SIZE(1) ^ * FROM ("M" | "F" | "m" | "f")) * EQUALITY MATCHING RULE caseIgnoreMatch * SINGLE VALUE TRUE * ID pkcs-9-at-gender * } * ``` * * @constant * @type {ATTRIBUTE<PrintableString>} * @implements {ATTRIBUTE<PrintableString>} */ export declare const gender: ATTRIBUTE<PrintableString>; //# sourceMappingURL=gender.oa.d.mts.map