@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
37 lines • 1.1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PKCSEntityAttributeSet = void 0;
const encryptedPrivateKeyInfo_oa_1 = require("../PKCS-9/encryptedPrivateKeyInfo.oa");
const pKCS15Token_oa_1 = require("../PKCS-9/pKCS15Token.oa");
const pKCS7PDU_oa_1 = require("../PKCS-9/pKCS7PDU.oa");
const userPKCS12_oa_1 = require("../PKCS-9/userPKCS12.oa");
/* START_OF_SYMBOL_DEFINITION PKCSEntityAttributeSet */
/**
* @summary PKCSEntityAttributeSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PKCSEntityAttributeSet ATTRIBUTE ::= {
* pKCS7PDU |
* userPKCS12 |
* pKCS15Token |
* encryptedPrivateKeyInfo,
* ... -- For future extensions
* }
* ```
*
* @constant
* @type {ATTRIBUTE[]}
*
*/
exports.PKCSEntityAttributeSet = [
pKCS7PDU_oa_1.pKCS7PDU,
userPKCS12_oa_1.userPKCS12,
pKCS15Token_oa_1.pKCS15Token,
encryptedPrivateKeyInfo_oa_1.encryptedPrivateKeyInfo,
];
/* END_OF_SYMBOL_DEFINITION PKCSEntityAttributeSet */
/* eslint-enable */
//# sourceMappingURL=PKCSEntityAttributeSet.osa.js.map