@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
28 lines • 739 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PKCS12AttrSet = void 0;
const friendlyName_oa_1 = require("../PKCS-9/friendlyName.oa");
const localKeyId_oa_1 = require("../PKCS-9/localKeyId.oa");
/* START_OF_SYMBOL_DEFINITION PKCS12AttrSet */
/**
* @summary PKCS12AttrSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PKCS12AttrSet ATTRIBUTE ::= {
* friendlyName |
* localKeyId,
* ... -- Other attributes are allowed
* }
* ```
*
* @constant
* @type {ATTRIBUTE[]}
*
*/
exports.PKCS12AttrSet = [friendlyName_oa_1.friendlyName, localKeyId_oa_1.localKeyId];
/* END_OF_SYMBOL_DEFINITION PKCS12AttrSet */
/* eslint-enable */
//# sourceMappingURL=PKCS12AttrSet.osa.js.map