Class: Authlogic::CryptoProviders::Sha512::V2
- Inherits:
-
Object
- Object
- Authlogic::CryptoProviders::Sha512::V2
- Defined in:
- lib/authlogic/crypto_providers/sha512/v2.rb
Overview
SHA-512 does not have any practical known attacks against it. However, there are better choices. We recommend transitioning to a more secure, adaptive hashing algorithm, like scrypt.
Class Attribute Summary collapse
-
.join_token ⇒ Object
Returns the value of attribute join_token.
-
.stretches ⇒ Object
The number of times to loop through the encryption.
Class Method Summary collapse
-
.encrypt(*tokens) ⇒ Object
Turns your raw password into a Sha512 hash.
-
.matches?(crypted, *tokens) ⇒ Boolean
Does the crypted password match the tokens? Uses the same tokens that were used to encrypt.
Class Attribute Details
.join_token ⇒ Object
Returns the value of attribute join_token.
13 14 15 |
# File 'lib/authlogic/crypto_providers/sha512/v2.rb', line 13 def join_token @join_token end |
.stretches ⇒ Object
The number of times to loop through the encryption.
16 17 18 |
# File 'lib/authlogic/crypto_providers/sha512/v2.rb', line 16 def stretches @stretches ||= 20 end |
Class Method Details
.encrypt(*tokens) ⇒ Object
Turns your raw password into a Sha512 hash.
22 23 24 25 26 27 28 |
# File 'lib/authlogic/crypto_providers/sha512/v2.rb', line 22 def encrypt(*tokens) digest = tokens.flatten.join(join_token) stretches.times do digest = Digest::SHA512.digest(digest) end digest.unpack1("H*") end |
.matches?(crypted, *tokens) ⇒ Boolean
Does the crypted password match the tokens? Uses the same tokens that were used to encrypt.
32 33 34 |
# File 'lib/authlogic/crypto_providers/sha512/v2.rb', line 32 def matches?(crypted, *tokens) encrypt(*tokens) == crypted end |