@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
21 lines (20 loc) • 412 B
TypeScript
import type { ATTRIBUTE } from "@wildboar/x500/src/lib/modules/InformationFramework/ATTRIBUTE.oca";
/**
* @summary PKCS12AttrSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PKCS12AttrSet ATTRIBUTE ::= {
* friendlyName |
* localKeyId,
* ... -- Other attributes are allowed
* }
* ```
*
* @constant
* @type {ATTRIBUTE[]}
*
*/
export declare const PKCS12AttrSet: ATTRIBUTE[];