fromJson static method

Future<ScpResponseSetPassword> fromJson(
  1. dynamic inputJson,
  2. String password
)

Implementation

static Future<ScpResponseSetPassword> fromJson(var inputJson, String password) async {
  if (!InputValidation.validateJsonResponse(inputJson)) {
    return ScpResponseSetPassword();
  }

  String response = inputJson['response'];
  String hmac = inputJson['hmac'];

  // Check hmac before additional processing
  if (await ScpCrypto().verifyHMAC(response, hmac, password)) {
    var decodedPayload = base64Decode(response);
    var decodedJson = json.decode(utf8.decode(decodedPayload));
    if (decodedJson['type'] == type) {
      ScpResponseSetPassword setPasswordResponse = ScpResponseSetPassword(
        deviceId: decodedJson['deviceId'],
        currentPasswordNumber: decodedJson['currentPasswordNumber'],
        result: decodedJson['result'],
      );
      return setPasswordResponse;
    }
  }
  return ScpResponseSetPassword();
}