2016-05-31 17:16:45 +00:00
|
|
|
import "typings-global";
|
|
|
|
export declare class SshKey {
|
|
|
|
private privKey;
|
|
|
|
private pubKey;
|
|
|
|
private hostVar;
|
|
|
|
constructor(optionsArg?: {
|
|
|
|
private?: string;
|
|
|
|
public?: string;
|
|
|
|
host?: string;
|
|
|
|
});
|
|
|
|
host: string;
|
|
|
|
privateKey: string;
|
2016-06-13 22:11:20 +00:00
|
|
|
privateKeyBase64: string;
|
2016-05-31 17:16:45 +00:00
|
|
|
publicKey: string;
|
2016-06-13 22:11:20 +00:00
|
|
|
publicKeyBase64: string;
|
2016-05-31 17:16:45 +00:00
|
|
|
type: string;
|
|
|
|
store(filePathArg?: string): void;
|
|
|
|
}
|