iobroker.bshb
Version:
Connects Bosch Smart Home Interface-Processes to ioBroker
31 lines • 748 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClientCert = void 0;
/**
* Container class for certificate and private key of client certificate.
*
* @author Christopher Holomek
* @since 01.12.2019
*/
class ClientCert {
_certificate;
_privateKey;
constructor(certificate, privateKey) {
this._certificate = certificate;
this._privateKey = privateKey;
}
/**
* Get certificate of client certificate
*/
get certificate() {
return this._certificate;
}
/**
* Get private key of client certificate
*/
get privateKey() {
return this._privateKey;
}
}
exports.ClientCert = ClientCert;
//# sourceMappingURL=client-cert.js.map