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