@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
19 lines (18 loc) • 316 B
TypeScript
import { HashAlgorithm } from "../PKCS-1/HashAlgorithm.ta";
/**
* @summary sha1
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* sha1 HashAlgorithm ::= {
* algorithm id-sha1,
* parameters SHA1Parameters : NULL
*
* }
* ```
*
* @constant
*/
export declare const sha1: HashAlgorithm;