UNPKG

@xevolab/jades

Version:

JAdES Digital Signatures compatible with the ETSI TS 119 182-1 Standard

11 lines (10 loc) 459 B
import { X509Certificate } from "crypto"; export declare function generateX5c(certs: X509Certificate[]): string[]; export declare function generateX5tS256(certs: X509Certificate[]): string; interface X5o { digAlg: "S384" | "S512"; digVal: string; } export declare function generateX5o(certs: X509Certificate[], alg: "SHA384" | "SHA512"): X5o; export declare function generateX5ts(certs: X509Certificate[], alg: "SHA384" | "SHA512"): X5o[]; export {};