1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

argon2: add French translation (#14786)

argon2: add fr translation
This commit is contained in:
Alexandre ZANNI 2024-11-22 22:40:28 +01:00 committed by GitHub
parent af7c37a4bf
commit 91bff913a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
pages.fr/common/argon2.md Normal file
View file

@ -0,0 +1,20 @@
# argon2
> Calcule les hachés cryptographiques d'Argon2.
> Plus d'informations : <https://github.com/P-H-C/phc-winner-argon2#command-line-utility>.
- Calcule un haché avec un mot de passe et un sel avec les paramètres par défaut :
`echo "{{mot_de_passe}}" | argon2 "{{sel}}"`
- Calcule un haché avec l'algorithme spécifié :
`echo "{{mot_de_passe}}" | argon2 "{{sel}}" -{{d|i|id}}`
- Affiche le haché de sortie sans informations supplémentaires :
`echo "{{mot_de_passe}}" | argon2 "{{sel}}" -e`
- Calcule un haché avec des [t]emps d'itération, l'utilisation de la [m]émoire et des paramètres de [p]arallélisme donnés :
`echo "{{mot_de_passe}}" | argon2 "{{sel}}" -t {{5}} -m {{20}} -p {{7}}`