This password encoder was decompiled from the Android app then manually cleaned up and ported to Javascript. It ain't pretty, but it works. I don't know that this is all necessarily the most correct or idiomatic way to implement these features, but I wanted to make sure the functionality got committed to help out people wanting to use this for smart home appliances (#1).
12 lines
833 B
JavaScript
12 lines
833 B
JavaScript
'use strict';
|
|
|
|
exports.SLPoolStatusMessage = require('./SLPoolStatusMessage.js').SLPoolStatusMessage;
|
|
exports.SLControllerConfigMessage = require('./SLControllerConfigMessage.js').SLControllerConfigMessage;
|
|
exports.SLChallengeMessage = require('./SLChallengeMessage.js').SLChallengeMessage;
|
|
exports.SLLoginMessage = require('./SLLoginMessage.js').SLLoginMessage;
|
|
exports.SLChemDataMessage = require('./SLChemDataMessage.js').SLChemDataMessage;
|
|
exports.SLSaltCellConfigMessage = require('./SLSaltCellConfigMessage.js').SLSaltCellConfigMessage;
|
|
exports.SLVersionMessage = require('./SLVersionMessage.js').SLVersionMessage;
|
|
exports.SLSetCircuitStateMessage = require('./SLSetCircuitStateMessage.js').SLSetCircuitStateMessage;
|
|
exports.SLGetGatewayDataMessage = require('./SLGetGatewayDataMessage.js').SLGetGatewayDataMessage;
|