@wildboar/pki-stub
Version:
X.510 PKI-Stub ASN.1 data structures in TypeScript
20 lines (19 loc) • 489 B
TypeScript
import { NULL } from "asn1-ts";
import { ALGORITHM } from "../PKI-Stub/ALGORITHM.oca";
/**
* @summary sha224WithRSAEncryptionAlgorithm
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* sha224WithRSAEncryptionAlgorithm ALGORITHM ::= { -- IETF RFC 5754
* PARMS NULL
* IDENTIFIED BY {1 2 840 113549 1 11} }
* ```
*
* @constant
* @type {ALGORITHM<NULL>}
* @implements {ALGORITHM<NULL>}
*/
export declare const sha224WithRSAEncryptionAlgorithm: ALGORITHM<NULL>;