Sha256: 4dbd899d67830800957b6b3f7d9c4891a038ce003b90195d37f107e23d672f92
Contents?: true
Size: 375 Bytes
Versions: 53
Compression:
Stored size: 375 Bytes
Contents
# A Ruby library implementing OpenBSD's bcrypt()/crypt_blowfish algorithm for # hashing passwords. module BCrypt end if RUBY_PLATFORM == "java" require 'java' else require "openssl" end begin RUBY_VERSION =~ /(\d+.\d+)/ require "#{$1}/bcrypt_ext" rescue LoadError require "bcrypt_ext" end require 'bcrypt/error' require 'bcrypt/engine' require 'bcrypt/password'
Version data entries
53 entries across 53 versions & 8 rubygems