Reputation: 839
In hybrid cordova android mobile app, passing ajax call without encrypted password using https/SSL . Is it secured?
Ajax call:
$.ajax({
type: "POST",
url: url,
data: "{username:'"+user+"', password:'"+encpwd+"'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (result) {
},
error: function (error) {
},
});
Upvotes: 0
Views: 89
Reputation: 2533
As long as your using SSL you should be fine. Using HTTPS the whole communication channel is encrypted client to server.
Upvotes: 1