summaryrefslogtreecommitdiff
path: root/lib/srp/session.rb
AgeCommit message (Collapse)Author
2013-07-14store aa, bb and u as hex by defaultAzul
2013-07-14first take on a hex based apiAzul
2013-06-24api: Session#internal_state to test and debugAzul
Also use functions with memoizing instead of instance vars
2013-02-25version 0.1.6 - added SRP::Session#to_hashAzul
2012-10-11authenticate returns the user, to_json includes M2. bumped version to 0.1.3release-0.1.0Azul
This way the controller can easily use @user = @session.authenticate; respond_with @sessoin;
2012-10-11removed duplicate requires, bumped versionAzul
2012-10-05add to_json for session so it's easy to use in rails controllersAzul
2012-10-05made m and m2 calculation srp 6A compatibleAzul
Also added session_test that tests agains values calculated with py_srp
2012-10-04using the SRP 6a algorithm for calculating MAzul
2012-10-04moved all server side auth stuff into session so i can remove the ↵Azul
authentication module
2012-10-04created session class to hold aa, bb and so forth - done for clientAzul
We have a session in the server already - duplication there now, merge next