@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
16 lines (15 loc) • 344 B
TypeScript
import { OBJECT_IDENTIFIER } from "asn1-ts";
export { pkcs_1 } from "../PKCS-1/pkcs-1.va";
/**
* @summary sha1WithRSAEncryption
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* sha1WithRSAEncryption OBJECT IDENTIFIER ::= { pkcs-1 5 }
* ```
*
* @constant
*/
export declare const sha1WithRSAEncryption: OBJECT_IDENTIFIER;