diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/srp_calculate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/srp_calculate.js b/src/srp_calculate.js index 8928114..93a4568 100644 --- a/src/srp_calculate.js +++ b/src/srp_calculate.js @@ -54,7 +54,7 @@ srp.Calculate = function() { }; this.hash = function(string) { - return removeLeading0(SHA256(string)); + return SHA256(string); }; |