@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
23 lines (22 loc) • 460 B
JavaScript
import { friendlyName } from "../PKCS-9/friendlyName.oa.mjs";
import { localKeyId } from "../PKCS-9/localKeyId.oa.mjs";
/**
* @summary PKCS12AttrSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PKCS12AttrSet ATTRIBUTE ::= {
* friendlyName |
* localKeyId,
* ... -- Other attributes are allowed
* }
* ```
*
* @constant
* @type {ATTRIBUTE[]}
*
*/
export const PKCS12AttrSet = [friendlyName, localKeyId];
/* eslint-enable */