@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
23 lines • 617 B
text/typescript
import { GeneralizedTime } from "@wildboar/asn1";
import type { ATTRIBUTE } from "@wildboar/x500/InformationFramework";
/**
* @summary dateOfBirth
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* dateOfBirth ATTRIBUTE ::= {
* WITH SYNTAX GeneralizedTime
* EQUALITY MATCHING RULE generalizedTimeMatch
* SINGLE VALUE TRUE
* ID pkcs-9-at-dateOfBirth
* }
* ```
*
* @constant
* @type {ATTRIBUTE<GeneralizedTime>}
* @implements {ATTRIBUTE<GeneralizedTime>}
*/
export declare const dateOfBirth: ATTRIBUTE<GeneralizedTime>;
//# sourceMappingURL=dateOfBirth.oa.d.mts.map