@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
24 lines (23 loc) • 476 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
/**
* @summary id_dsa_with_sha1
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* id-dsa-with-sha1 OBJECT IDENTIFIER ::= {iso(1) member-body(2) us(840) x9-57(10040) x9cm(4) 3}
* ```
*
* @constant
*/
export const id_dsa_with_sha1 = _OID.fromParts([
/* iso */ 1,
/* member-body */ 2,
/* us */ 840,
/* x9-57 */ 10040,
/* x9cm */ 4,
3,
]);
/* eslint-enable */