@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
21 lines • 681 B
text/typescript
import type { ATTRIBUTE } from "@wildboar/x500/InformationFramework";
import { EncryptedPrivateKeyInfo } from "../AsymmetricKeyPackageModuleV1/EncryptedPrivateKeyInfo.ta.mjs";
/**
* @summary encryptedPrivateKeyInfo
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* encryptedPrivateKeyInfo ATTRIBUTE ::= {
* WITH SYNTAX EncryptedPrivateKeyInfo
* ID pkcs-9-at-encryptedPrivateKeyInfo
* }
* ```
*
* @constant
* @type {ATTRIBUTE<EncryptedPrivateKeyInfo>}
* @implements {ATTRIBUTE<EncryptedPrivateKeyInfo>}
*/
export declare const encryptedPrivateKeyInfo: ATTRIBUTE<EncryptedPrivateKeyInfo>;
//# sourceMappingURL=encryptedPrivateKeyInfo.oa.d.mts.map