blob: d5d6cf3574efad5bd209417beb1ab7c33f03a27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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'
autoload :Util, 'srp/util'
class WrongPassword < StandardError
end
end
|