@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
26 lines (25 loc) • 496 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
/**
* @summary id_sha1
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* id-sha1 OBJECT IDENTIFIER ::= {
* iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26
* }
* ```
*
* @constant
*/
export const id_sha1 = _OID.fromParts([
/* iso */ 1,
/* identified-organization */ 3,
/* oiw */ 14,
/* secsig */ 3,
/* algorithms */ 2,
26,
]);
/* eslint-enable */