diff options
author | Azul <azul@riseup.net> | 2013-06-22 14:53:13 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2013-06-22 14:53:13 +0200 |
commit | fb20ef3060a4e2dc8065f46891ce3b9cd3ef463f (patch) | |
tree | 8d77e1a30cdc3b4cf171eb1ee58a0ff7223a6713 /spec/session_spec.js | |
parent | 4c53d48b0df6754d03a2f0cfa5e1ac36410062c5 (diff) |
refactor: separate calculations from session
Diffstat (limited to 'spec/session_spec.js')
-rw-r--r-- | spec/session_spec.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/session_spec.js b/spec/session_spec.js index acfe0be..5802283 100644 --- a/spec/session_spec.js +++ b/spec/session_spec.js @@ -36,14 +36,6 @@ describe("Session", function() { expect(session.getI()).toBe(compare.username); }); - it("calculates the proper verifier", function() { - expect(session.getV(compare.salt).toString(16)).toBe(compare.v); - }); - - it("calculates the proper A", function() { - expect(session.calculateAndSetA(compare.a)).toBe(compare.aa); - }); - it("calculates the proper M", function() { session.calculateAndSetA(compare.a); session.calculations(compare.salt, compare.bb); |