Ruby implementation of Secure QR Login algorithm
Proposing a comprehensive, easy-to-use, high security replacement for usernames, passwords, reminders, one-time-code authenticators, and everything else.
See The SQRL Page for a detailed explaination of the concept and algorithms to implement the SQRL system.
Rsqrl uses RbNaCl, the Ruby Cryptography Library. RbNaCl is a Ruby wrapper for a cryptography library written in C, libsodium. Libsodium needs to be installed on your development and server systems.
For OS X users, libsodium is available via homebrew and can be installed with:
brew install libsodium
To add rsqrl to your project, add this line to your application's Gemfile:
gem 'rsqrl'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rsqrl
TODO: Write usage instructions here
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request