Merge pull request #2218 from hagau/fix_error_handling_algo

Fix error handling in case of an unsupported algorithm parameter in
This commit is contained in:
Dominik Schürmann
2017-11-17 13:58:13 +01:00
committed by GitHub

View File

@@ -273,8 +273,8 @@ public class SshAuthenticationService extends Service {
return createExceptionErrorResult(SshAuthenticationApiError.NO_AUTH_KEY,
"Authentication key for master key id not found in keychain", e);
} catch (NoSuchAlgorithmException e) {
return createExceptionErrorResult(SshAuthenticationApi.RESULT_CODE_ERROR,
"", e);
return createExceptionErrorResult(SshAuthenticationApiError.INVALID_ALGORITHM,
"Algorithm not supported", e);
}
} else {
return createErrorResult(SshAuthenticationApiError.NO_KEY_ID,