summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristiaan Conover <cconover@gitlab.com>2019-08-21 18:01:13 -0400
committerChristiaan Conover <cconover@gitlab.com>2019-08-21 18:01:13 -0400
commitb316fb6fd798cac32938560d78349c21d8920ddf (patch)
treecf5780578a0006bd31e7a0e50dad78afd0b46b4c
parent954c3c18320d7dcb66c4c15035594cf5e59a496e (diff)
downloadgitlab-ce-b316fb6fd798cac32938560d78349c21d8920ddf.tar.gz
Fix link syntax typo
Fix a missing parentheses in the markdown for a link caused by the URL containing parentheses.
-rw-r--r--doc/security/password_storage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/security/password_storage.md b/doc/security/password_storage.md
index a44fafcca14..b5c021bf5de 100644
--- a/doc/security/password_storage.md
+++ b/doc/security/password_storage.md
@@ -10,4 +10,4 @@ GitLab uses the [Devise](https://github.com/plataformatec/devise) authentication
- **Hashing**: the [bcrypt](https://en.wikipedia.org/wiki/Bcrypt) hashing function is used to generate the hash of the provided password. This is a strong, industry-standard cryptographic hashing function.
- **Stretching**: Password hashes are [stretched](https://en.wikipedia.org/wiki/Key_stretching) to harden against brute-force attacks. GitLab uses a streching factor of 10 by default.
-- **Salting**: A [cryptographic salt](https://en.wikipedia.org/wiki/Salt_(cryptography) is added to each password to harden against pre-computed hash and dictionary attacks. Each salt is randomly generated for each password, so that no two passwords share a salt to further increase security. \ No newline at end of file
+- **Salting**: A [cryptographic salt](https://en.wikipedia.org/wiki/Salt_(cryptography)) is added to each password to harden against pre-computed hash and dictionary attacks. Each salt is randomly generated for each password, so that no two passwords share a salt to further increase security. \ No newline at end of file