Your message dated Sat, 16 Apr 2016 07:49:05 +0000
with message-id <[email protected]>
and subject line Bug#820491: fixed in argon2 0~20160406-2
has caused the Debian Bug report #820491,
regarding argon2: missing man page for argon2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
820491: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=820491
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: argon2
Version: 0~20160406-1
Severity: normal
Tags: upstream patch

argon2 is missing a manpage, and it doesn't respond well to the usual
-h or --help (it treats those as an attempted salt).

The attached patch (which i'll push to collab-maint shortly) fixes the
problem.  I'd be happy if they want to adopt this upstream, but i am
not in touch with upstream.  Feel free to forward it to them!

Thanks for packaging argon2 for debian!

       --dkg

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing'), (200, 'unstable'), (1, 
'experimental-debug'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.4.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages argon2 depends on:
ii  libc6  2.22-5

argon2 recommends no packages.

argon2 suggests no packages.

-- debconf-show failed
diff --git a/debian/argon2.1 b/debian/argon2.1
new file mode 100644
index 0000000..f8a811f
--- /dev/null
+++ b/debian/argon2.1
@@ -0,0 +1,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)
diff --git a/debian/argon2.manpages b/debian/argon2.manpages
new file mode 100644
index 0000000..39ab410
--- /dev/null
+++ b/debian/argon2.manpages
@@ -0,0 +1 @@
+debian/argon2.1
diff --git a/debian/copyright b/debian/copyright
index dba1b93..3ac2cb3 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -22,6 +22,10 @@ Files: debian/*
 Copyright: 2016, Luca Bruno <[email protected]>
 License: CC0
 
+Files: debian/argon2.1
+Copyright: 2016, Daniel Kahn Gillmor <[email protected]>
+License: CC0
+
 License: CC0
  /Statement of Purpose/
  .
diff --git a/debian/argon2.1 b/debian/argon2.1
new file mode 100644
index 0000000..f8a811f
--- /dev/null
+++ b/debian/argon2.1
@@ -0,0 +1,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)
diff --git a/debian/argon2.manpages b/debian/argon2.manpages
new file mode 100644
index 0000000..39ab410
--- /dev/null
+++ b/debian/argon2.manpages
@@ -0,0 +1 @@
+debian/argon2.1
diff --git a/debian/copyright b/debian/copyright
index dba1b93..3ac2cb3 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -22,6 +22,10 @@ Files: debian/*
 Copyright: 2016, Luca Bruno <[email protected]>
 License: CC0
 
+Files: debian/argon2.1
+Copyright: 2016, Daniel Kahn Gillmor <[email protected]>
+License: CC0
+
 License: CC0
  /Statement of Purpose/
  .

--- End Message ---
--- Begin Message ---
Source: argon2
Source-Version: 0~20160406-2

We believe that the bug you reported is fixed in the latest version of
argon2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Luca Bruno <[email protected]> (supplier of updated argon2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 16 Apr 2016 09:37:28 +0200
Source: argon2
Binary: libargon2-0-dev libargon2-0 argon2
Architecture: source
Version: 0~20160406-2
Distribution: unstable
Urgency: medium
Maintainer: Luca Bruno <[email protected]>
Changed-By: Luca Bruno <[email protected]>
Description:
 argon2     - memory-hard hashing function - utility
 libargon2-0 - memory-hard hashing function - runtime library
 libargon2-0-dev - memory-hard hashing function - development files
Closes: 820491
Changes:
 argon2 (0~20160406-2) unstable; urgency=medium
 .
   [ Daniel Kahn Gillmor ]
   * fix Vcs-* endpoints
   * add manpage for argon2 (Closes: #820491)
   * bump Standards-Version to 3.9.8 (no changes needed)
 .
   [ Luca Bruno ]
   * argon2: fix section for utils package
Checksums-Sha1:
 0e6ff8a865852d2849f5850ead87e9b6a0b6fa62 1983 argon2_0~20160406-2.dsc
 d3d132aa899b5d9d0687b4cd9b1f60770609a233 5612 argon2_0~20160406-2.debian.tar.xz
Checksums-Sha256:
 4dcf86990353ec4bee532aed1c9ce3f15bf30bc822ee995da59371403a040e59 1983 
argon2_0~20160406-2.dsc
 ff1f8539081332f361ae52614120e7c55fd7c169671200d43373a4d2e9fc0766 5612 
argon2_0~20160406-2.debian.tar.xz
Files:
 7ab3f9e8aeea64264a43b712bb5fee1e 1983 libs optional argon2_0~20160406-2.dsc
 569bf9de4c49af86fa45dd97e68faebb 5612 libs optional 
argon2_0~20160406-2.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJXEevuAAoJEKmDSiJSB45OhP4P/2Srh78oQLtZ8mTZZ2v+5Z6v
9epzz3fETjrDm3HDhxs7fiaPr6zC7bd9fplta9MIKFpXBtIksYXvhHgYRA17KRus
bSMyQqEXDI2/IvYoZpBS6V1Xjjwk/TUJ3N/zYUlSRPfOnXwISU+ea76/9NF2RS95
PFdwwSexqizcv/C7edMhL6+e6KfIN5WG6H7GLu5ZYBd+zy/LX4e+YOM1FyiSt5eO
WTtFhB9AKInKu7Yqghe41sOFka8AUpWuUShAKpS452uQbiW3nGngYmtHGMzDO2gI
XxVS/7fO3ks5wtOpKFmFY2coiXstORVLLx+5hEs+oygcYRyDTPsPzzDtV3E5RaQ0
j3/UNZUzQ9qBrd3N5AyYG2YJCL6WAF6JNiZxQynJfruONHScvU8Mt4+61McBpQbS
I0PXTxd9CUx+8U46Lx+w/EhDwKJld70ULex03r4LrsAKHWVMu9TRsyOMOTnfNDJ5
fa+6O8fXK2KdXsWgf0xkaqqOk+3W0DBjBx1KZfQ0EDcawy+xYpd37Qujz1V0hdtb
Gk44by9OHFZ26ds9C/V5M6r9x4woUK271kqDsSeDByYDpSO+xq8UaS5i2FrxIpYy
WtaBFqtV03yNd3t9sHoZ+y4I/UuVl0XFQL9iwYjEwVb8OkMBjTpiBDdaKNEwUXoH
J9tmgtH3/plvWAzUQJdD
=gHCu
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to