File: argon2.1

package info (click to toggle)
argon2 0~20171227-0.3%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, bookworm-proposed-updates
  • size: 3,616 kB
  • sloc: ansic: 3,348; makefile: 158; sh: 51
file content (47 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.TH ARGON2 "1" "April 2016" "argon2 " "User Commands"

.SH NAME
argon2 \- generate argon2 hashes

.SH SYNOPSIS
.B argon2 salt
.RB [ OPTIONS ]

.SH DESCRIPTION
Generate Argon2 hashes from the command line.

The supplied salt (the first argument to the command) must be at least
8 octets in length, and the password is supplied on standard input.

By default, this uses Argon2i, the variant where memory access is
indepedent of secret data.  This is the correct variant to use for
password hashing.

.SH OPTIONS
.TP
.B \-d
Use Argon2d instead of Argon2i (Argon2i is the default)
.TP
.BI \-t " N"
Sets the number of iterations to N (default = 3)
.TP
.BI \-m " N"
Sets the memory usage of 2^N KiB (default = 12)
.TP
.BI \-p " N"
Sets parallelism to N threads (default = 1)
.TP
.BI \-h " N"
Sets hash output length to N bytes (default = 32)
.TP
.B \-e
Output only encoded hash
.TP
.B \-r
Output only the raw bytes of the hash

.SH COPYRIGHT
This manpage was written by \fBDaniel Kahn Gillmor\fR for the Debian
distribution (but may be used by others).  It is released, like the
rest of this Argon2 implementation, under the terms of Creative
Commons 0 (CC0)