golang-github-muesli-crunchy 0.2-2 source package in Ubuntu

Changelog

golang-github-muesli-crunchy (0.2-2) unstable; urgency=low

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Update standards version to 4.5.0, no changes needed.

  [ Thorsten Alteholz ]
  * upload source package
  * add myself to Uploaders:
  * debian/control: Bump debhelper from old 12 to 13.
  * debian/control: Update standards version to 4.5.1, no changes needed.

 -- Thorsten Alteholz <email address hidden>  Wed, 06 Jan 2021 18:06:00 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-muesli-crunchy_0.2-2.dsc 2.4 KiB 3a64f85313be3f995cae2f2f0b8331c86f9ae714b12dc240c616f3eb388cc2b5
golang-github-muesli-crunchy_0.2.orig.tar.gz 6.2 KiB 37458cfca63ee54237c7da3bae2d6f6b5024e6d37801707805a1632d762e8a45
golang-github-muesli-crunchy_0.2-2.debian.tar.xz 2.4 KiB 66d53ab465135eabda38a9ab80a9e0cdce90a5555b62d2fbbf482be74a7f63d1

Available diffs

No changes file available.

Binary packages built by this source

golang-github-muesli-crunchy-dev: finds common flaws in passwords

 crunchy finds common flaws in passwords. It detects the following flaws:
  - Empty passwords: ErrEmpty
  - Too short passwords: ErrTooShort
  - Too few different characters, like "aabbccdd": ErrTooFewChars
  - Systematic passwords, like "abcdefgh" or "87654321": ErrTooSystematic
  - Passwords from a dictionary / wordlist: ErrDictionary
  - Mangled / reversed passwords, like "p@ssw0rd": ErrMangledDictionary
  - Hashed dictionary words, like "5f4dcc3b5aa765d61d8327deb882cf99"
    (the md5sum of "password"): ErrHashedDictionary
 .
 System dictionaries from /usr/share/dict will be indexed. If no dictionaries
 were found, crunchy only relies on the regular sanity checks (ErrEmpty,
 ErrTooShort, ErrTooFewChars and ErrTooSystematic).
 .
 crunchy uses the WagnerFischer algorithm to find mangled passwords in your
 dictionaries.