Class: Authentication::Logic::CryptoProviders::Sha256
- Inherits:
-
Object
- Object
- Authentication::Logic::CryptoProviders::Sha256
- Defined in:
- lib/auth/logic/crypto_providers/sha256.rb,
lib/auth/logic/crypto_providers/sha256/v2.rb
Overview
Sha256
Uses the Sha256 hash algorithm to encrypt passwords.
Defined Under Namespace
Classes: V2
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 Sha256 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.
37 38 39 |
# File 'lib/auth/logic/crypto_providers/sha256.rb', line 37 def join_token @join_token end |
.stretches ⇒ Object
The number of times to loop through the encryption.
40 41 42 |
# File 'lib/auth/logic/crypto_providers/sha256.rb', line 40 def stretches @stretches ||= 20 end |
Class Method Details
.encrypt(*tokens) ⇒ Object
Turns your raw password into a Sha256 hash.
46 47 48 49 50 |
# File 'lib/auth/logic/crypto_providers/sha256.rb', line 46 def encrypt(*tokens) digest = tokens.flatten.join(join_token) stretches.times { digest = Digest::SHA256.hexdigest(digest) } digest end |
.matches?(crypted, *tokens) ⇒ Boolean
Does the crypted password match the tokens? Uses the same tokens that were used to encrypt.
54 55 56 |
# File 'lib/auth/logic/crypto_providers/sha256.rb', line 54 def matches?(crypted, *tokens) encrypt(*tokens) == crypted end |