blob: a008b82a63941cc3cd47af09be875889f181b04b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Ruby library for the server side of the Secure Remote Password protocol
# References
# `The Stanford SRP Homepage',
# http://srp.stanford.edu/
# `SRP JavaScript Demo',
# http://srp.stanford.edu/demo/demo.html
$:.unshift File.dirname(__FILE__)
module SRP
autoload :Client, 'srp/client'
autoload :Authentication, 'srp/authentication'
end
|