@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
21 lines (20 loc) • 650 B
TypeScript
import type { ATTRIBUTE } from "@wildboar/x500/src/lib/modules/InformationFramework/ATTRIBUTE.oca";
import { EncryptedPrivateKeyInfo } from "../AsymmetricKeyPackageModuleV1/EncryptedPrivateKeyInfo.ta";
/**
* @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>;