[ubuntu/artful-proposed] cryptsetup 2:1.7.3-4ubuntu1 (Accepted)

Andy Whitcroft apw at ubuntu.com
Tue Sep 5 12:38:13 UTC 2017


cryptsetup (2:1.7.3-4ubuntu1) artful; urgency=low

  * New upstream release, merge from Debian unstable. Remaining
    Ubuntu changes:
    - debian/control:
      + Depend on plymouth.
      + Invert the "busybox | busybox-static" Recommends, as the latter
        is the one we ship in main as part of the ubuntu-standard task.
      + Drop explicit libgcrypt20 dependency from libcryptsetup4.
  * d/p/fips-fix-luksformat-with-recent-kernels -- fix luksFormat
    with recent FIPS enabled kernels.
  * Drop _BSD_SOURCE in favor of _DEFAULT_SOURCE
  * Drop c99 std, as the default is now higher than that
  * Use DEB_VERSION from dpkg/default.mk for pod2man release variable
  * Drop upstart system jobs.
  * Add maintscript to drop removed upstart system jobs.

cryptsetup (2:1.7.3-4) unstable; urgency=high

  [ Guilhem Moulin ]
  * Drop obsolete update-rc.d parameters.  Thanks to Michael Biebl for the
    patch. (Closes: #847620)
  * debian/copyright: Fix license mismatch (docs/examples/*
    lib/crypto_backend/* lib/loopaes/* lib/tcrypt/* lib/verity/* python/* are
    LGPL-2.1+ not GPL-2+). (Closes: #861802)
  * debian/initramfs/cryptroot-hook: honor RESUME={none,auto} as documented in
    initramfs.conf(5) by initramfs-tools >=0.129. (Closes: #861074)

cryptsetup (2:1.7.3-3) unstable; urgency=medium

  [ Jonas Meurer ]
  * debian/scripts/decrypt_ssl: fix script to actually output the decrypted
    key. Apparently this script has been broken since June 2008. Doesn't seem
    like anybody is using it. Thanks to g1 for spotting and reporting the
    error. (Closes: #844050)
  * debian/initramfs/cryptroot-script:
    + limit the sleep after max passphrase attempts to devices for the rootfs.
      This mitigates the negative impact in case of broken keyscripts etc.
    + add $crypttarget to each message to provide more context.
  * debian/initramfs/cryptroot-hook: fix sanity check for key files on root
    fs in get_device_opts(): detect if processed device is a root (parent)
    device even for LVM setups. (closes: #842951)
  * debian/README.initramfs: minor fix to the decrypt_derived keyscript
    section: now that systemd is standard, 'cryptdisks_start' should be used
    instead of '/etc/init.d/cryptdisks start'.
  * debian/manpages/crypttab.xml: add a warning to the 'keyscript' option
    that systemd doesn't support the option (yet) and mention the possible
    workaround to process the devices in question in the initramfs.

  [ Guilhem Moulin ]
  * add debian/gbp.conf to set the upstream tag to "v%(version%.%_)s".  As
    this enables git-buildpackage >= 0.8.7 to automatically generate
    orig.tar.gz, step nr. 5 is now removed from debian/README.source.
  * debian/compat: bump debhelper compatibility version to 9.
  * debian/initramfs/cryptroot-hook:
    + fix tab damage for consistency with the rest of the code
    + better warning for deprecated settings
    + fix sanity check for key files in get_device_opts(): print a warning if
      the key file isn't on the root FS, or if the root device is not
      encrypted, even for LVM setups.
    + fix sanity check for key files in get_device_opts(): print a warning if
      the processed device is a resume device, even for LVM setups.
    + fix runtime error in get_lvm_deps() if the first argument is either
      missing or the empty string.
    + reset IFS after processing $rootopts in get_device_opts(); the missing
      linefeed in $IFS caused LVM logical volumes spaning over multiple PVs
      not to have their parent devices detected correctly.

cryptsetup (2:1.7.3-2) unstable; urgency=medium

  [ Guilhem Moulin ]
  * debian/README.Debian: update authorized_keys(5) path, incorrect since
    2:1.7.2-1, for remote unlocking at initramfs stage using the dropbear SSH
    server.

  [ Jonas Meurer ]
  * debian/initramfs/cryptroot-script: sleep after max passphrase attempts.
    This mitigates local brute-force attacks and addresses CVE-2016-4484.
    Thanks to Ismael Ripoll and Hector Marco for discovery and report.
    - decrease $count by one in tries loop if unlocking was successful.
    - warn and sleep for 60 seconds if the maximum allowed attempts of
      unlocking (configured with crypttab option tries, default=3) are
      reached.

cryptsetup (2:1.7.3-1) unstable; urgency=medium

  * New upstream release 1.7.3.
  * debian/rules: run dh_strip_nondeterminism(1p) in binary-arch rules to
    make the package build more reproducible. Introduces a new Build-Depends
    on dh-strip-nondeterminism. Thanks to Reiner Herrmann for bugreport and
    patch. (Closes: #842581)

cryptsetup (2:1.7.2-5) unstable; urgency=high

  [ Guilhem Moulin ]
  * debian/upstream/signing-key.asc: add upstream's armored OpenPGP key,
    fingerprint 2A29 1824 3FDE 4664 8D06  86F9 D9B0 577B D93E 98FC.
  * debian/watch: add "pgpsigurlmangle" option so uscan(1) can automatically
    verify cryptographic signatures on release tarballs.

  [ Jonas Meurer ]
  * debian/initramfs/cryptroot-hook: only source crypt-hook from
    /etc/cryptsetup-initramfs/ when present. (Closes: #841503)

cryptsetup (2:1.7.2-4) unstable; urgency=high

  [ Guilhem Moulin ]
  * debian/initramfs/cryptroot-hook:
    + Fix warning printed for lvm devices backed by multiple dm-crypt nodes.
      Regression introduced in 2:1.7.2-1.  Thanks Zoltan Hidvegi, for the
      patch. (Closes: #840480)
    + Don't escape all slash characters "/" in device paths of the form
      /dev/by-label/..., only the label itself.  Regression introduced in
      2:1.7.2-2 as a fix for #839888.

cryptsetup (2:1.7.2-3) unstable; urgency=medium

  [ Guilhem Moulin ]
  * debian/initramfs/cryptroot-conf: don't set CRYPTSETUP and KEYFILE_PATTERN,
    so the (deprecated) values set in /etc/initramfs-tools aren't overridden
    to the empty string by default.  Regression introduced in 2:1.7.2-1.
    (Closes: #839994.)
  * debian/README.initramfs: fixed minor typo.

cryptsetup (2:1.7.2-2) unstable; urgency=medium

  * debian/cryptdisks.functions: fix a nasty typo in do_start that rendered
    systems with sysVinit unbootable. Thanks to Marc Haber for bugreport and
    patch (Closes: #839888)

cryptsetup (2:1.7.2-1) unstable; urgency=medium

  [ Jonas Meurer ]
  * new upstream release 1.7.2. Highlights include:
    - code now uses kernel crypto API backend according to new changes
      introduced in mainline kernel. (in 1.7.1)
    - cryptsetup now allows special "-" (standard input) keyfile handling
      even for TCRYPT (TrueCrypt and VeraCrypt compatible) devices. (in 1.7.1)
    - Support activation options for error handling modes in Linux kernel
      dm-verity module. (in 1.7.2)
  * debian/cryptdisks.functions: use '--key-file=-' again with the tcrypt
    extension, now that upstream issue #269 is fixed.
  * migrate the packaging repository from SVN to Git:
    - debian/control: Update Vcs-* fields to point to the new git repository.
    - debian/README.source: document new repository structure and release
      handling.
  * debian/README.Debian, debian/NEWS: minor typo fixes.
  * debian/rules: run pod2man --release="$(DEB_VERSION). (Closes: #839352)

  [ Guilhem Moulin ]
  * debian/control: add self to uploaders.
  * debian/cryptdisks.functions: when iterating through the crypttab, don't
    abort after the first disk that fails to be closed.  Regression introduced
    2:1.7.0-1 when the filed is sourced under 'set -e'.
  * debian/cryptdisks.functions: stop using `seq` since cryptsetup doesn't
    depend on busybox.  Instead, try again after 1, 2, 4, 8 and 16s when an
    encrypted disk cannot be closed. (Closes: #811456)
  * debian/cryptsetup.maintscript: add a "rm_conffile" directive to remove
    conffile /etc/bash_completion.d/cryptdisks, obsolete since 2:1.7.0-1.
    (Closes: #810227)
  * debian/README.initramfs: fix typo s/initramfs-update/update-initramfs/.
    Thanks, Stuart Prescott. (Closes: #827263)
  * debian/rules: Add 'hardening=+pie' to DEB_BUILD_MAINT_OPTIONS to compile
    ELF executables as PIEs.
  * debian/control: Bump Standards-Version to 3.9.8 (no changes necessary).
  * debian/cryptsetup.lintian-overrides: Remove unused lintian override
    init.d-script-does-not-source-init-functions.
  * Use /etc/crytsetup-initramfs/conf-hook for initramfs hook script
    configuration.  For backward compatibility setting CRYPTSETUP and
    KEYFILE_PATTERN in /etc/initramfs-tools/initramfs.conf is still supported
    for now, but causes the hook to print a warning.
    This is done following the initramfs-tools maintainers' request (see
    #807527) that hook and boot script configuration files be stored outside
    the /etc/initramfs-tools directory. (Closes: #783393)
  * Print a warning when private key material is to be included in the
    initramfs image (ie, if $KEYFILE_PATTERN is not empty), and the image is
    created with a permissive mode.
  * Add Indonesian debconf templates translation.  Thanks, Izharul Haq for the
    patch. (Closes: #835158)
  * debian/initramfs/cryptroot-hook: Avoid leading space in $rootdevs,
    $resumedevs, etc.
  * Support unlocking devices at initramfs stage using a key file stored on
    the encrypted root FS.  Note however that resume devices won't be unlocked
    this way since the resume boot script is currently run before mounting the
    root FS. (Closes: #776409)
  * debian/initramfs/cryptroot-hook: Avoid undesired effects for target or
    device names containing non-alphanumeric characters such as "." or "-":
    + replace `grep "^$x\b"` by `awk -vx="$x" '$1==x {print}'`; and
    + replace `echo "$x"` by printf '%s' "$x" when the argument might start
      with a dash.
  * debian/initramfs/cryptroot-{hook,script}, debian/cryptdisks.functions:
    ensure slash characters "/" from device labels are escaped when
    constructing symlinks under /dev/disk/by-label.
  * debian/scripts/decrypt_gnupg:
    + Remove --no-mdc-warning to display a warning if the MDC integrity
      protection is missing.
    + Replace "GnuPG key" by "gpg-encrypted key" in messages and
      documentation.
  * debian/initramfs/cryptgnupg-hook: Add support for multiple devices
    encrypted using a gpg-encrypted key.
  * debian/README.gnupg: Indicate that not the only the gpg-encrypted key for
    the root FS is copied onto the initramfs, but also the ones for all
    devices that need to be unlocked at initramfs stage.
  * debian/initramfs/cryptroot-hook: Fix bug for device label starting with
    "UUID=".

  [ Helmut Grohne ]
  * libcryptsetup-dev: move the .pc file to a multiarch location such that
    cross-pkg-config can find it. (closes: #811545)
  * Fix FTCBFS: Use host arch compiler for askpass as well. (closes: #811559)

Date: Thu, 10 Aug 2017 14:07:29 +0100
Changed-By: Andy Whitcroft <apw at ubuntu.com>
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
https://launchpad.net/ubuntu/+source/cryptsetup/2:1.7.3-4ubuntu1
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Thu, 10 Aug 2017 14:07:29 +0100
Source: cryptsetup
Binary: cryptsetup cryptsetup-bin libcryptsetup4 libcryptsetup-dev cryptsetup-udeb libcryptsetup4-udeb
Architecture: source
Version: 2:1.7.3-4ubuntu1
Distribution: artful
Urgency: high
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Changed-By: Andy Whitcroft <apw at ubuntu.com>
Description:
 cryptsetup - disk encryption support - startup scripts
 cryptsetup-bin - disk encryption support - command line tools
 cryptsetup-udeb - disk encryption support - commandline tools (udeb) (udeb)
 libcryptsetup-dev - disk encryption support - development files
 libcryptsetup4 - disk encryption support - shared library
 libcryptsetup4-udeb - disk encryption support - shared library (udeb) (udeb)
Closes: 776409 783393 810227 811456 811545 811559 827263 835158 839352 839888 839994 840480 841503 842581 842951 844050 847620 861074 861802
Changes:
 cryptsetup (2:1.7.3-4ubuntu1) artful; urgency=low
 .
   * New upstream release, merge from Debian unstable. Remaining
     Ubuntu changes:
     - debian/control:
       + Depend on plymouth.
       + Invert the "busybox | busybox-static" Recommends, as the latter
         is the one we ship in main as part of the ubuntu-standard task.
       + Drop explicit libgcrypt20 dependency from libcryptsetup4.
   * d/p/fips-fix-luksformat-with-recent-kernels -- fix luksFormat
     with recent FIPS enabled kernels.
   * Drop _BSD_SOURCE in favor of _DEFAULT_SOURCE
   * Drop c99 std, as the default is now higher than that
   * Use DEB_VERSION from dpkg/default.mk for pod2man release variable
   * Drop upstart system jobs.
   * Add maintscript to drop removed upstart system jobs.
 .
 cryptsetup (2:1.7.3-4) unstable; urgency=high
 .
   [ Guilhem Moulin ]
   * Drop obsolete update-rc.d parameters.  Thanks to Michael Biebl for the
     patch. (Closes: #847620)
   * debian/copyright: Fix license mismatch (docs/examples/*
     lib/crypto_backend/* lib/loopaes/* lib/tcrypt/* lib/verity/* python/* are
     LGPL-2.1+ not GPL-2+). (Closes: #861802)
   * debian/initramfs/cryptroot-hook: honor RESUME={none,auto} as documented in
     initramfs.conf(5) by initramfs-tools >=0.129. (Closes: #861074)
 .
 cryptsetup (2:1.7.3-3) unstable; urgency=medium
 .
   [ Jonas Meurer ]
   * debian/scripts/decrypt_ssl: fix script to actually output the decrypted
     key. Apparently this script has been broken since June 2008. Doesn't seem
     like anybody is using it. Thanks to g1 for spotting and reporting the
     error. (Closes: #844050)
   * debian/initramfs/cryptroot-script:
     + limit the sleep after max passphrase attempts to devices for the rootfs.
       This mitigates the negative impact in case of broken keyscripts etc.
     + add $crypttarget to each message to provide more context.
   * debian/initramfs/cryptroot-hook: fix sanity check for key files on root
     fs in get_device_opts(): detect if processed device is a root (parent)
     device even for LVM setups. (closes: #842951)
   * debian/README.initramfs: minor fix to the decrypt_derived keyscript
     section: now that systemd is standard, 'cryptdisks_start' should be used
     instead of '/etc/init.d/cryptdisks start'.
   * debian/manpages/crypttab.xml: add a warning to the 'keyscript' option
     that systemd doesn't support the option (yet) and mention the possible
     workaround to process the devices in question in the initramfs.
 .
   [ Guilhem Moulin ]
   * add debian/gbp.conf to set the upstream tag to "v%(version%.%_)s".  As
     this enables git-buildpackage >= 0.8.7 to automatically generate
     orig.tar.gz, step nr. 5 is now removed from debian/README.source.
   * debian/compat: bump debhelper compatibility version to 9.
   * debian/initramfs/cryptroot-hook:
     + fix tab damage for consistency with the rest of the code
     + better warning for deprecated settings
     + fix sanity check for key files in get_device_opts(): print a warning if
       the key file isn't on the root FS, or if the root device is not
       encrypted, even for LVM setups.
     + fix sanity check for key files in get_device_opts(): print a warning if
       the processed device is a resume device, even for LVM setups.
     + fix runtime error in get_lvm_deps() if the first argument is either
       missing or the empty string.
     + reset IFS after processing $rootopts in get_device_opts(); the missing
       linefeed in $IFS caused LVM logical volumes spaning over multiple PVs
       not to have their parent devices detected correctly.
 .
 cryptsetup (2:1.7.3-2) unstable; urgency=medium
 .
   [ Guilhem Moulin ]
   * debian/README.Debian: update authorized_keys(5) path, incorrect since
     2:1.7.2-1, for remote unlocking at initramfs stage using the dropbear SSH
     server.
 .
   [ Jonas Meurer ]
   * debian/initramfs/cryptroot-script: sleep after max passphrase attempts.
     This mitigates local brute-force attacks and addresses CVE-2016-4484.
     Thanks to Ismael Ripoll and Hector Marco for discovery and report.
     - decrease $count by one in tries loop if unlocking was successful.
     - warn and sleep for 60 seconds if the maximum allowed attempts of
       unlocking (configured with crypttab option tries, default=3) are
       reached.
 .
 cryptsetup (2:1.7.3-1) unstable; urgency=medium
 .
   * New upstream release 1.7.3.
   * debian/rules: run dh_strip_nondeterminism(1p) in binary-arch rules to
     make the package build more reproducible. Introduces a new Build-Depends
     on dh-strip-nondeterminism. Thanks to Reiner Herrmann for bugreport and
     patch. (Closes: #842581)
 .
 cryptsetup (2:1.7.2-5) unstable; urgency=high
 .
   [ Guilhem Moulin ]
   * debian/upstream/signing-key.asc: add upstream's armored OpenPGP key,
     fingerprint 2A29 1824 3FDE 4664 8D06  86F9 D9B0 577B D93E 98FC.
   * debian/watch: add "pgpsigurlmangle" option so uscan(1) can automatically
     verify cryptographic signatures on release tarballs.
 .
   [ Jonas Meurer ]
   * debian/initramfs/cryptroot-hook: only source crypt-hook from
     /etc/cryptsetup-initramfs/ when present. (Closes: #841503)
 .
 cryptsetup (2:1.7.2-4) unstable; urgency=high
 .
   [ Guilhem Moulin ]
   * debian/initramfs/cryptroot-hook:
     + Fix warning printed for lvm devices backed by multiple dm-crypt nodes.
       Regression introduced in 2:1.7.2-1.  Thanks Zoltan Hidvegi, for the
       patch. (Closes: #840480)
     + Don't escape all slash characters "/" in device paths of the form
       /dev/by-label/..., only the label itself.  Regression introduced in
       2:1.7.2-2 as a fix for #839888.
 .
 cryptsetup (2:1.7.2-3) unstable; urgency=medium
 .
   [ Guilhem Moulin ]
   * debian/initramfs/cryptroot-conf: don't set CRYPTSETUP and KEYFILE_PATTERN,
     so the (deprecated) values set in /etc/initramfs-tools aren't overridden
     to the empty string by default.  Regression introduced in 2:1.7.2-1.
     (Closes: #839994.)
   * debian/README.initramfs: fixed minor typo.
 .
 cryptsetup (2:1.7.2-2) unstable; urgency=medium
 .
   * debian/cryptdisks.functions: fix a nasty typo in do_start that rendered
     systems with sysVinit unbootable. Thanks to Marc Haber for bugreport and
     patch (Closes: #839888)
 .
 cryptsetup (2:1.7.2-1) unstable; urgency=medium
 .
   [ Jonas Meurer ]
   * new upstream release 1.7.2. Highlights include:
     - code now uses kernel crypto API backend according to new changes
       introduced in mainline kernel. (in 1.7.1)
     - cryptsetup now allows special "-" (standard input) keyfile handling
       even for TCRYPT (TrueCrypt and VeraCrypt compatible) devices. (in 1.7.1)
     - Support activation options for error handling modes in Linux kernel
       dm-verity module. (in 1.7.2)
   * debian/cryptdisks.functions: use '--key-file=-' again with the tcrypt
     extension, now that upstream issue #269 is fixed.
   * migrate the packaging repository from SVN to Git:
     - debian/control: Update Vcs-* fields to point to the new git repository.
     - debian/README.source: document new repository structure and release
       handling.
   * debian/README.Debian, debian/NEWS: minor typo fixes.
   * debian/rules: run pod2man --release="$(DEB_VERSION). (Closes: #839352)
 .
   [ Guilhem Moulin ]
   * debian/control: add self to uploaders.
   * debian/cryptdisks.functions: when iterating through the crypttab, don't
     abort after the first disk that fails to be closed.  Regression introduced
     2:1.7.0-1 when the filed is sourced under 'set -e'.
   * debian/cryptdisks.functions: stop using `seq` since cryptsetup doesn't
     depend on busybox.  Instead, try again after 1, 2, 4, 8 and 16s when an
     encrypted disk cannot be closed. (Closes: #811456)
   * debian/cryptsetup.maintscript: add a "rm_conffile" directive to remove
     conffile /etc/bash_completion.d/cryptdisks, obsolete since 2:1.7.0-1.
     (Closes: #810227)
   * debian/README.initramfs: fix typo s/initramfs-update/update-initramfs/.
     Thanks, Stuart Prescott. (Closes: #827263)
   * debian/rules: Add 'hardening=+pie' to DEB_BUILD_MAINT_OPTIONS to compile
     ELF executables as PIEs.
   * debian/control: Bump Standards-Version to 3.9.8 (no changes necessary).
   * debian/cryptsetup.lintian-overrides: Remove unused lintian override
     init.d-script-does-not-source-init-functions.
   * Use /etc/crytsetup-initramfs/conf-hook for initramfs hook script
     configuration.  For backward compatibility setting CRYPTSETUP and
     KEYFILE_PATTERN in /etc/initramfs-tools/initramfs.conf is still supported
     for now, but causes the hook to print a warning.
     This is done following the initramfs-tools maintainers' request (see
     #807527) that hook and boot script configuration files be stored outside
     the /etc/initramfs-tools directory. (Closes: #783393)
   * Print a warning when private key material is to be included in the
     initramfs image (ie, if $KEYFILE_PATTERN is not empty), and the image is
     created with a permissive mode.
   * Add Indonesian debconf templates translation.  Thanks, Izharul Haq for the
     patch. (Closes: #835158)
   * debian/initramfs/cryptroot-hook: Avoid leading space in $rootdevs,
     $resumedevs, etc.
   * Support unlocking devices at initramfs stage using a key file stored on
     the encrypted root FS.  Note however that resume devices won't be unlocked
     this way since the resume boot script is currently run before mounting the
     root FS. (Closes: #776409)
   * debian/initramfs/cryptroot-hook: Avoid undesired effects for target or
     device names containing non-alphanumeric characters such as "." or "-":
     + replace `grep "^$x\b"` by `awk -vx="$x" '$1==x {print}'`; and
     + replace `echo "$x"` by printf '%s' "$x" when the argument might start
       with a dash.
   * debian/initramfs/cryptroot-{hook,script}, debian/cryptdisks.functions:
     ensure slash characters "/" from device labels are escaped when
     constructing symlinks under /dev/disk/by-label.
   * debian/scripts/decrypt_gnupg:
     + Remove --no-mdc-warning to display a warning if the MDC integrity
       protection is missing.
     + Replace "GnuPG key" by "gpg-encrypted key" in messages and
       documentation.
   * debian/initramfs/cryptgnupg-hook: Add support for multiple devices
     encrypted using a gpg-encrypted key.
   * debian/README.gnupg: Indicate that not the only the gpg-encrypted key for
     the root FS is copied onto the initramfs, but also the ones for all
     devices that need to be unlocked at initramfs stage.
   * debian/initramfs/cryptroot-hook: Fix bug for device label starting with
     "UUID=".
 .
   [ Helmut Grohne ]
   * libcryptsetup-dev: move the .pc file to a multiarch location such that
     cross-pkg-config can find it. (closes: #811545)
   * Fix FTCBFS: Use host arch compiler for askpass as well. (closes: #811559)
Checksums-Sha1:
 6e4c308ba6009cd5d928f57412cdaf7f82593ad8 2810 cryptsetup_1.7.3-4ubuntu1.dsc
 c4857db034822efe9fa62cee932a7dcde97fb228 1102318 cryptsetup_1.7.3.orig.tar.gz
 9624b70165d7e5ce27fa997f3192c15125ccd3b3 102648 cryptsetup_1.7.3-4ubuntu1.debian.tar.xz
 4a708b4d5364b16250bf82cee4aa84c149029a16 6280 cryptsetup_1.7.3-4ubuntu1_source.buildinfo
Checksums-Sha256:
 5293b8a88f2004c786143fe8428e2b6443777dfa8c92af4c31104150ccebaa6b 2810 cryptsetup_1.7.3-4ubuntu1.dsc
 58921825d268701af151e4de034f508aa8cb4d9f2e1c11847f4f8ae82866043d 1102318 cryptsetup_1.7.3.orig.tar.gz
 2634314ae7808bfa6e1d7343be8d437d6d7edfa797fdf82ad1fdac146b7e6029 102648 cryptsetup_1.7.3-4ubuntu1.debian.tar.xz
 420016795cc9ff0a4e88589e2e224b8c49a6497f5f5f6fb38b1eb97799a6831a 6280 cryptsetup_1.7.3-4ubuntu1_source.buildinfo
Files:
 39dfb856bb802419b769b087a0a202ee 2810 admin optional cryptsetup_1.7.3-4ubuntu1.dsc
 f0458f83d21cdf7952cbddb7a77a5c58 1102318 admin optional cryptsetup_1.7.3.orig.tar.gz
 96799a17ca7fa6865a5055d75252fe00 102648 admin optional cryptsetup_1.7.3-4ubuntu1.debian.tar.xz
 bb5c397adf9d7149742334ba2efecfbc 6280 admin optional cryptsetup_1.7.3-4ubuntu1_source.buildinfo
Original-Maintainer: Debian Cryptsetup Team <pkg-cryptsetup-devel at lists.alioth.debian.org>

-----BEGIN PGP SIGNATURE-----

iQIsBAEBCgAWBQJZrpplDxxhcHdAdWJ1bnR1LmNvbQAKCRBP++TpLv3qcibpD/9m
GCdY3zDJkdgP40SzSAuXs4JzLJN1//PMbSh5XQOntzlNH9SQx2eLdG7/NZ5tayGs
VOn1xrOfK9WYuXfNS0c8E0+HT1l/35FCtWDKFUSDaki7cfAJXXHbPKiuBF5t40YI
xtzYkhnYKEFrES/Ohh5jk1qZN5e0CLvkci62qyaDD67H93Lzqm59F7ac3YArI4RE
sB5G9cbuA1LxPOwH6XhEuWSeU4w6mi/ix8tdbBoqr+Rla7msQuLqr/CDLRHcmw8G
1yPMb7y1Ij6E6q/NeUZpXZYnEuEvecU1FBQptxDYj895aOCiQKPuUcBeVIM/1Bf0
B+aqThkdIHJZbmLQ0eRvNppeG9sABSlmc9HW2aAyu+EdpifdBgNFq/rw70bQbGee
qAxMKG7EbNFqX+YXdqnQxUUm5Bxqrh5JHa2ri22lyPGcJAU3tWHJ1FB+HzTTNOAD
vHU1ou08fKNZwE8LNADpzwbsEoSlLWVwuB9PpWy8hYU1tdt7yzs0CahydEnP8xpV
wT1fHeFm2AOucZtoHbnn+/56O8S/0G4xzZev9WfHE3talLr3yMXgnxdo368aqlmB
ea+FsVzBZqkPeQiXMds203kPTLi1zD8z02wlhgnTZhDMNICPCJud4GVBnycZjvWM
h47jv+EAg7yDhDiANgw4nuQ/YC9o/gjSm7KQKoI3cQ==
=2/3N
-----END PGP SIGNATURE-----


More information about the Artful-changes mailing list