Sha256: 5a7313e336c85be2ee95cb5d26ab8a5ebb67e69d021e3df163e9460e9a6d8e38
Contents?: true
Size: 452 Bytes
Versions: 9
Compression:
Stored size: 452 Bytes
Contents
# 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' autoload :Session, 'srp/session' class WrongPassword < StandardError end end
Version data entries
9 entries across 9 versions & 1 rubygems