UNPKG

@wildboar/pkcs

Version:
18 lines (17 loc) 380 B
/* eslint-disable */ import { ObjectIdentifier as _OID } from "@wildboar/asn1"; import { nistAlgorithms } from "../PKCS5v2-1/nistAlgorithms.va.mjs"; /** * @summary aes * @description * * ### ASN.1 Definition: * * ```asn1 * aes OBJECT IDENTIFIER ::= { nistAlgorithms 1 } * ``` * * @constant */ export const aes = _OID.fromParts([1], nistAlgorithms); /* eslint-enable */