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