Commit 92511d68d95273418a58f2339d2023b18d1c7b7c

Authored by Adhidarma Hadiwinoto
1 parent b8c6efb921
Exists in master

cleaing

Showing 1 changed file with 0 additions and 2 deletions Side-by-side Diff

... ... @@ -15,9 +15,7 @@ var sleep_before_retry = 2000;
15 15  
16 16 function calculateSignature(userid, password, msisdn, timestamp) {
17 17 var a = msisdn.substr(msisdn.length - 4) + timestamp;
18   - console.log(a);
19 18 var b = userid.substr(0, 4) + password;
20   - console.log(b);
21 19  
22 20 return xor.encode(a,b);
23 21 }