summaryrefslogtreecommitdiff
path: root/lib/srp.rb
blob: 999f9b6c1bd9dfe8aa427f8485849ffa69b1d3b3 (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 :Server, 'srp/server'
end