Skip to content

Commit

Permalink
Improved salt rounds to a higher value when hashing user passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianLeChat committed Feb 5, 2024
1 parent 48318d4 commit 8caf560
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/[locale]/settings/user/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ export async function updateUser(
};
}

// On met à jour après le nom d'utilisateur et l'adresse électronique
// de l'utilisateur dans la base de données.
// On met à jour après le nom d'utilisateur, l'adresse électronique et
// le mot de passe de l'utilisateur dans la base de données.
await prisma.user.update( {
where: {
id: session.user.id
Expand All @@ -65,7 +65,7 @@ export async function updateUser(
name: result.data.username,
email: result.data.email,
password: result.data.password
? await bcrypt.hash( result.data.password, 13 )
? await bcrypt.hash( result.data.password, 15 )
: undefined
}
} );
Expand Down

0 comments on commit 8caf560

Please sign in to comment.