UNPKG

signing-enclave

Version:

A code signing and notarization tool for macOS and Windows applications. Uses Azure Key Vault for secret and certificate management.

9 lines (8 loc) 452 B
import { HsmCertificateFile } from "./secretClient"; export declare function downloadMacCertificateFromHSM(certName: string): Promise<HsmCertificateFile>; /** * Signs an application using a certificate from Azure KeyVault. * @param pathToSign - The path to the application to sign. * @param certName - The name of the certificate to use on Azure KeyVault. */ export declare function macOsSign(pathToSign: string, $certName: string): Promise<void>;