We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In doDiscover null is given as second argument, instead of the list of known devices: https://github.com/HouseOS/secure_control_protocol/blob/66d2fdd7e9c55d80089736c2d24e652daa29f906/lib/scp.dart#L59
null
This leads to the passwort beeing null, because the list of known devices is empty, even when a device is already provisioned and thus not using the default passwort. https://github.com/HouseOS/secure_control_protocol/blob/66d2fdd7e9c55d80089736c2d24e652daa29f906/lib/scp_response_parser.dart#L32-L38
Due to the usage of the default password, when in fact the device already has a passwort, leads to an incorrect value when calculating the HMac in https://github.com/HouseOS/secure_control_protocol/blob/66d2fdd7e9c55d80089736c2d24e652daa29f906/lib/scp_crypto.dart#L103-L109
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In doDiscover
null
is given as second argument, instead of the list of known devices: https://github.com/HouseOS/secure_control_protocol/blob/66d2fdd7e9c55d80089736c2d24e652daa29f906/lib/scp.dart#L59This leads to the passwort beeing
null
, because the list of known devices is empty, even when a device is already provisioned and thus not using the default passwort.https://github.com/HouseOS/secure_control_protocol/blob/66d2fdd7e9c55d80089736c2d24e652daa29f906/lib/scp_response_parser.dart#L32-L38
Due to the usage of the default password, when in fact the device already has a passwort, leads to an incorrect value when calculating the HMac in
https://github.com/HouseOS/secure_control_protocol/blob/66d2fdd7e9c55d80089736c2d24e652daa29f906/lib/scp_crypto.dart#L103-L109
The text was updated successfully, but these errors were encountered: