Files: 6f2637c0f63c49f473b4e5167c1ed53c79623dc2 / lib / bcrypt.rb
286 bytesRaw
1 | # A Ruby library implementing OpenBSD's bcrypt()/crypt_blowfish algorithm for |
2 | # hashing passwords. |
3 | module BCrypt |
4 | end |
5 | |
6 | if RUBY_PLATFORM == "java" |
7 | require 'java' |
8 | else |
9 | require "openssl" |
10 | end |
11 | |
12 | require 'bcrypt_ext' |
13 | require 'bcrypt/error' |
14 | require 'bcrypt/engine' |
15 | require 'bcrypt/password' |
16 |
Built with git-ssb-web