Sha256: 510ced3558271e0dac92686d84121933d494c8e509f942c55e83b341ebb11648
Contents?: true
Size: 514 Bytes
Versions: 90
Compression:
Stored size: 514 Bytes
Contents
module BCrypt class Error < StandardError # :nodoc: end module Errors # :nodoc: # The salt parameter provided to bcrypt() is invalid. class InvalidSalt < BCrypt::Error; end # The hash parameter provided to bcrypt() is invalid. class InvalidHash < BCrypt::Error; end # The cost parameter provided to bcrypt() is invalid. class InvalidCost < BCrypt::Error; end # The secret parameter provided to bcrypt() is invalid. class InvalidSecret < BCrypt::Error; end end end
Version data entries
90 entries across 89 versions & 10 rubygems