summaryrefslogtreecommitdiff
path: root/src/srp_calculate.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/srp_calculate.js')
-rw-r--r--src/srp_calculate.js2
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);
};