removes logs

This commit is contained in:
Mo Bitar
2016-12-17 22:41:02 -06:00
parent f32c7e74e2
commit f7709d47c3
4 changed files with 1 additions and 5 deletions

View File

@@ -83,7 +83,6 @@ angular.module('app.frontend')
}
this.login = function(email, password, callback) {
console.log("login with", email, password);
this.getAuthParamsForEmail(email, function(authParams){
Neeto.crypto.computeEncryptionKeysForUser(_.merge({email: email, password: password}, authParams), function(keys){
this.setGk(keys.gk);

View File

@@ -26,7 +26,6 @@ class SNCryptoWeb extends SNCrypto {
stretchPassword({password, pw_salt, pw_cost, pw_func, pw_alg, pw_key_size} = {}, callback) {
this.webCryptoImportKey(password, pw_func, function(key){
console.log("Importing key", password);
if(!key) {
console.log("Key is null, unable to continue");