From 1abdcd54af7b88561b9cb9b9b25694209b1cc51f Mon Sep 17 00:00:00 2001 From: Pawan Date: Mon, 23 Feb 2026 08:39:50 +0530 Subject: [PATCH] Fix repeated word in hashing explanation Corrected a repeated word in the explanation of hashing and salting. --- src/pages/development/security/sensitive-information.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/development/security/sensitive-information.md b/src/pages/development/security/sensitive-information.md index 12841286e..508484ae2 100644 --- a/src/pages/development/security/sensitive-information.md +++ b/src/pages/development/security/sensitive-information.md @@ -139,7 +139,7 @@ stored in the form of a hash. Good examples include passwords, tokens, and secrets. After a password (or similar entity) is created, there is no need to ever display it to a user again. Later on, there's only a need to compare user input to the existing password. -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 +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 hashes for passwords to prevent attacks using rainbow tables. `\Magento\Framework\Encryption\EncryptorInterface` helps with hashes. Use `getHash()` method to generate a hash with