Línea 248... |
Línea 248... |
248 |
AesCipher encryptedEmail = AesCipher.encrypt(aes, email);
|
248 |
AesCipher encryptedEmail = AesCipher.encrypt(aes, email);
|
249 |
AesCipher encryptedPassword = AesCipher.encrypt(aes, password);
|
249 |
AesCipher encryptedPassword = AesCipher.encrypt(aes, password);
|
Línea 250... |
Línea 250... |
250 |
|
250 |
|
251 |
formBody = new FormBody.Builder()
|
251 |
formBody = new FormBody.Builder()
|
- |
|
252 |
.add(Constants.POST_SIGNIN_FIELD_APPLICATION_ID, String.valueOf(Configuration.APPLICATION_ID))
|
252 |
.add(Constants.POST_SIGNIN_FIELD_APPLICATION_ID, String.valueOf(Configuration.APPLICATION_ID))
|
253 |
.add(Constants.POST_SIGNIN_FIELD_VARIANT_ID, String.valueOf(Configuration.VARIANT_ID))
|
253 |
.add(Constants.POST_SIGNIN_FIELD_DEVICE_UUID, iTwoGetSkills.getPreference().getDeviceUuid())
|
254 |
.add(Constants.POST_SIGNIN_FIELD_DEVICE_UUID, iTwoGetSkills.getPreference().getDeviceUuid())
|
254 |
.add(Constants.POST_SIGNIN_FIELD_EMAIL, encryptedEmail.getData())
|
255 |
.add(Constants.POST_SIGNIN_FIELD_EMAIL, encryptedEmail.getData())
|
255 |
.add(Constants.POST_SIGNIN_FIELD_PASSWORD, encryptedPassword.getData())
|
256 |
.add(Constants.POST_SIGNIN_FIELD_PASSWORD, encryptedPassword.getData())
|
256 |
.add(Constants.POST_SIGNIN_FIELD_DEVICE_ENCRYPTER, Constants.SIGNIN_ENCRYPTER)
|
257 |
.add(Constants.POST_SIGNIN_FIELD_DEVICE_ENCRYPTER, Constants.SIGNIN_ENCRYPTER)
|
Línea 394... |
Línea 395... |
394 |
}
|
395 |
}
|
395 |
else {
|
396 |
else {
|
396 |
iTwoGetSkills.invokeFragment(Constants.IDX_FRAGMENT_BIOMETRIC);
|
397 |
iTwoGetSkills.invokeFragment(Constants.IDX_FRAGMENT_BIOMETRIC);
|
397 |
}*/
|
398 |
}*/
|
398 |
iTwoGetSkills.showNavigationAndToolbar();
|
399 |
iTwoGetSkills.showNavigationAndToolbar();
|
399 |
iTwoGetSkills.invokeFragment(Constants.IDX_FRAGMENT_WELCOME);
|
400 |
iTwoGetSkills.invokeFragment(Constants.IDX_FRAGMENT_MY_CAPSULES);
|
400 |
});
|
401 |
});
|
Línea 401... |
Línea 402... |
401 |
|
402 |
|
402 |
|
403 |
|