@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
18 lines (17 loc) • 378 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
import { pkcs_3 } from "../PKCS-3/pkcs-3.va.mjs";
/**
* @summary dhKeyAgreement
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* dhKeyAgreement OBJECT IDENTIFIER ::= { pkcs-3 1 }
* ```
*
* @constant
*/
export const dhKeyAgreement = _OID.fromParts([1], pkcs_3);
/* eslint-enable */