Exception: Authentication::Logic::NilCryptoProvider
- Inherits:
-
InvalidCryptoProvider
- Object
- StandardError
- Error
- InvalidCryptoProvider
- Authentication::Logic::NilCryptoProvider
- Defined in:
- lib/auth/logic/errors.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#message ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/auth/logic/errors.rb', line 15 def " In version 5, Authentication::Logic used SCrypt by default. As of version 6, there\n is no default. We still recommend SCrypt. If you previously relied on\n this default, then, in your User model (or equivalent), please set the\n following:\n\n acts_as_authentic do |c|\n c.crypto_provider = ::Authentication::Logic::CryptoProviders::SCrypt\n end\n\n Furthermore, the Authentication::Logic gem no longer depends on the scrypt gem. In\n your Gemfile, please add scrypt.\n\n gem \"scrypt\", \"~> 3.0\"\n\n We have made this change in Authentication::Logic 6 so that users of other crypto\n providers no longer need to install the scrypt gem.\n EOS\nend\n" |