@microsoft/dev-tunnels-ssh
Version:
SSH library for Dev Tunnels
16 lines • 585 B
JavaScript
;
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeyExchangeAlgorithm = void 0;
class KeyExchangeAlgorithm {
constructor(name, keySizeInBits, hashAlgorithmName, hashDigestLength) {
this.name = name;
this.keySizeInBits = keySizeInBits;
this.hashAlgorithmName = hashAlgorithmName;
this.hashDigestLength = hashDigestLength;
}
}
exports.KeyExchangeAlgorithm = KeyExchangeAlgorithm;
//# sourceMappingURL=keyExchangeAlgorithm.js.map