Skip to content

Commit 33eb1f9

Browse files
authored
Merge pull request #431 from pawan/patch-3
Fix repeated word in hashing explanation - issues/296
2 parents a9e5048 + 414e6aa commit 33eb1f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/development/security/sensitive-information.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ stored in the form of a hash.
139139

140140
Good examples include passwords, tokens, and secrets. After a password (or similar entity) is created, there is no need to ever
141141
display it to a user again. Later on, there's only a need to compare user input to the existing password.
142-
A hash allows allows you to compare a value to a hashed one and to avoid exposing the original value. A salt is often used with
142+
A hash allows you to compare a value to a hashed one and to avoid exposing the original value. A salt is often used with
143143
hashes for passwords to prevent attacks using rainbow tables.
144144

145145
`\Magento\Framework\Encryption\EncryptorInterface` helps with hashes. Use `getHash()` method to generate a hash with

0 commit comments

Comments
 (0)