@wildboar/pki-stub
Version:
X.510 PKI-Stub ASN.1 data structures in TypeScript
37 lines (36 loc) • 1.01 kB
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID, } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @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 const sha224WithRSAEncryptionAlgorithm = {
class: "ALGORITHM",
decoderFor: {
"&Type": $._decodeNull,
"&DynParms": undefined,
},
encoderFor: {
"&Type": $._encodeNull,
"&DynParms": undefined,
},
"&id": _OID.fromParts([
1, 2, 840, 113549, 1, 11,
]) /* OBJECT_FIELD_SETTING */ /* UNIQUE_OBJECT_FIELD_SETTING */,
"&Type": 0 /* OBJECT_FIELD_SETTING OBJECT_TYPE_FIELD_SETTING */,
"&DynParms": 0 /* OBJECT_FIELD_SETTING OBJECT_TYPE_FIELD_SETTING */,
};
/* eslint-enable */