@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
20 lines (19 loc) • 477 B
JavaScript
import * as $ from "@wildboar/asn1/functional";
import { id_hmacWithSHA1 } from "../PKCS5v2-1/id-hmacWithSHA1.va.mjs";
/**
* ### ASN.1 Definition
* ```
* {NULL IDENTIFIED BY id-hmacWithSHA1}
* ```
*/
export const ContentEncryptionAlgorithms_Union0_Intersection0_Exclusion = {
class: "ALGORITHM-IDENTIFIER",
decoderFor: {
"&Type": $._decodeNull,
},
encoderFor: {
"&Type": $._encodeNull,
},
"&id": id_hmacWithSHA1,
"&Type": 0,
};