D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
alt
/
alt-nodejs19
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
sigstore
/
dist
/
ca
/
Filename :
index.d.ts
back
Copy
/// <reference types="node" /> /// <reference types="node" /> import { KeyObject } from 'crypto'; export interface CA { createSigningCertificate: (identityToken: string, publicKey: KeyObject, challenge: Buffer) => Promise<string[]>; } export interface CAClientOptions { fulcioBaseURL: string; } export declare class CAClient implements CA { private fulcio; constructor(options: CAClientOptions); createSigningCertificate(identityToken: string, publicKey: KeyObject, challenge: Buffer): Promise<string[]>; }