Skip to content

Commit 3d3d065

Browse files
committed
Update a broken link in part4c
1 parent ad27d72 commit 3d3d065

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/content/4/es/part4c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ module.exports = usersRouter
243243

244244
La contraseña enviada en la solicitud <i>no</i> se almacena en la base de datos. Almacenamos el <i>hash</i> de la contraseña que se genera con la función _bcrypt.hash_.
245245

246-
Los fundamentos de [almacenar contraseñas](https://codahale.com/how-to-safely-store-a-password/) están fuera del alcance de este material del curso. No discutiremos qué significa el número mágico 10 asignado a la variable [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds), pero puedes leer más sobre ello en el material vinculado.
246+
Los fundamentos de [almacenar contraseñas](https://bytebytego.com/guides/how-to-store-passwords-in-the-database/) están fuera del alcance de este material del curso. No discutiremos qué significa el número mágico 10 asignado a la variable [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds), pero puedes leer más sobre ello en el material vinculado.
247247

248248
Nuestro código actual no contiene ningún manejo de errores o validación de input para verificar que el nombre de usuario y la contraseña están en el formato deseado.
249249

src/content/4/fi/osa4c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ module.exports = usersRouter
249249

250250
Tietokantaan siis <i>ei</i> talleteta pyynnön mukana tulevaa salasanaa, vaan funktion _bcrypt.hash_ avulla laskettu <i>hash</i>.
251251

252-
Materiaalin tilamäärä ei valitettavasti riitä käsittelemään sen tarkemmin salasanojen [tallennuksen perusteita](https://codahale.com/how-to-safely-store-a-password/), esim. mitä maaginen luku 10 muuttujan [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds) arvona tarkoittaa. Lue linkkien takaa lisää.
252+
Materiaalin tilamäärä ei valitettavasti riitä käsittelemään sen tarkemmin salasanojen [tallennuksen perusteita](https://bytebytego.com/guides/how-to-store-passwords-in-the-database/), esim. mitä maaginen luku 10 muuttujan [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds) arvona tarkoittaa. Lue linkkien takaa lisää.
253253

254254
Koodissa ei tällä hetkellä ole mitään virheidenkäsittelyä eikä validointeja eli esim. käyttäjätunnuksen ja salasanan muodon tarkastuksia.
255255

src/content/4/fr/part4c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ module.exports = usersRouter
243243

244244
Le mot de passe envoyé dans la requête n'est <i>pas</i> stocké dans la base de données. Nous stockons le <i>hash</i> du mot de passe qui est généré avec la fonction _bcrypt.hash_.
245245

246-
Les principes fondamentaux de [stockage des mots de passe](https://codahale.com/how-to-safely-store-a-password/) sont hors du champ d'application de ce matériel de cours. Nous n'aborderons pas ce que signifie le nombre magique 10 assigné à la variable [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds), mais vous pouvez en lire plus à ce sujet dans le matériel lié.
246+
Les principes fondamentaux de [stockage des mots de passe](https://bytebytego.com/guides/how-to-store-passwords-in-the-database/) sont hors du champ d'application de ce matériel de cours. Nous n'aborderons pas ce que signifie le nombre magique 10 assigné à la variable [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds), mais vous pouvez en lire plus à ce sujet dans le matériel lié.
247247

248248
Notre code actuel ne contient aucune gestion des erreurs ou validation des entrées pour vérifier que le nom d'utilisateur et le mot de passe sont dans le format souhaité.
249249

src/content/4/ptbr/part4c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ module.exports = usersRouter
243243

244244
A senha enviada na solicitação <i>não</i> é armazenada no banco de dados. Armazenamos o <i>hash</i> da senha que é gerada com a função _bcrypt.hash_.
245245

246-
Os fundamentos do [armazenamento de senhas](https://codahale.com/how-to-safely-store-a-password/) estão fora do escopo deste material do curso. Não discutiremos o que significa o número mágico 10 atribuído à variável [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds), mas você pode ler mais sobre isso no material vinculado.
246+
Os fundamentos do [armazenamento de senhas](https://bytebytego.com/guides/how-to-store-passwords-in-the-database/) estão fora do escopo deste material do curso. Não discutiremos o que significa o número mágico 10 atribuído à variável [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds), mas você pode ler mais sobre isso no material vinculado.
247247

248248
Nosso código atual não contém nenhum tratamento de erro ou validação de entrada para verificar se o nome de usuário e a senha estão no formato desejado.
249249

src/content/4/zh/part4c.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ module.exports = usersRouter
288288
<!-- The password sent in the request is <i>not</i> stored in the database. We store the <i>hash</i> of the password that is generated with the _bcrypt.hash_ function.-->
289289
请求中发送的密码<i>不</i>存储在数据库中。我们存储的是用_bcrypt.hash_函数生成的密码的<i>hash</i>。
290290

291-
<!-- The fundamentals of [storing passwords](https://codahale.com/how-to-safely-store-a-password/) are outside the scope of this course material. We will not discuss what the magic number 10 assigned to the [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds) variable means, but you can read more about it in the linked material.-->
292-
[存储密码](https://codahale.com/how-to-safely-store-a-password/)的基本原理不在本课程材料的范围之内。我们不会讨论分配给[saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds)变量的神奇数字10是什么意思,但你可以在链接材料中读到更多关于它的信息。
291+
<!-- The fundamentals of [storing passwords](https://bytebytego.com/guides/how-to-store-passwords-in-the-database/) are outside the scope of this course material. We will not discuss what the magic number 10 assigned to the [saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds) variable means, but you can read more about it in the linked material.-->
292+
[存储密码](https://bytebytego.com/guides/how-to-store-passwords-in-the-database/)的基本原理不在本课程材料的范围之内。我们不会讨论分配给[saltRounds](https://github.com/kelektiv/node.bcrypt.js/#a-note-on-rounds)变量的神奇数字10是什么意思,但你可以在链接材料中读到更多关于它的信息。
293293

294294
<!-- Our current code does not contain any error handling or input validation for verifying that the username and password are in the desired format.-->
295295
我们目前的代码不包含任何错误处理或输入验证,以验证用户名和密码是否符合所需的格式。

0 commit comments

Comments
 (0)