@microsoft/dev-tunnels-ssh
Version:
SSH library for Dev Tunnels
20 lines • 605 B
JavaScript
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
Object.defineProperty(exports, "__esModule", { value: true });
exports.SshSessionAlgorithms = void 0;
class SshSessionAlgorithms {
dispose() {
if (this.cipher)
this.cipher.dispose();
if (this.decipher)
this.decipher.dispose();
if (this.signer)
this.signer.dispose();
if (this.verifier)
this.verifier.dispose();
}
}
exports.SshSessionAlgorithms = SshSessionAlgorithms;
//# sourceMappingURL=sshSessionAlgorithms.js.map
;