You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/bcrypt-3.1.22/lib/bcrypt.rb

17 lines
287 B

# 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
require "bcrypt_ext"
require 'bcrypt/error'
require 'bcrypt/engine'
require 'bcrypt/password'