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