smartacme/dist/smartacme.classes.helper.d.ts

9 lines
192 B
TypeScript
Raw Normal View History

import 'typings-global';
export interface IRsaKeypair {
publicKey: string;
privateKey: string;
}
export declare class SmartacmeHelper {
createKeypair(bit?: number): IRsaKeypair;
}