arch-dependent name to an arch-independent one and rebuild. fixes build
on aarch64 and maybe mips64. (it's still broken on 32-bit due to an int
overflow).
sadly, while go allows us to let the build fail then modify files in it
and then rebuild, it doesn't seem to have a way to unpack the files in the
first place so they can be modified before a first build attempt.
lgtm abieber@, build test tb@
A realistic password strength estimator.
This is a Python implementation of the library created by the team at
Dropbox. The original library, written for JavaScript, can be found
at https://github.com/dropbox/zxcvbn.
- Accepts user data to be added to the dictionaries that are tested
against (name, birthdate, etc)
- Gives a score to the password, from 0 (terrible) to 4 (great)
- Provides feedback on the password and ways to improve it
- Returns time estimates on how long it would take to guess the password
in different situations
several crates needs few changes (patch) to work easily in ports tree, or might
build bundled versions of libraries instead of using ports tree.
but in some cases, it's simpler to let porters manage that themselves.
the diff replaces MODCARGO_CRATES_SQLITE3_BUNDLED (specific knob for
libsqlite3-sys) by MODCARGO_CRATES_KEEP (a list of crates to keep unmodified).
adapt security/vaultwarden and www/nextcloud_notify_push to use
MODCARGO_CRATES_KEEP instead of MODCARGO_CRATES_SQLITE3_BUNDLED.
ok landry@
devel/quirks and @pkgpath markers.
Drops py2 support so py-miasm needs work to fix with this version,
however the situation isn't worse than it is now, because it was already
unusable because py-llvmlite was already broken.
I only waited a few days for maintainer (no reply) because it's already
broken.
This module implements the Argon2 key derivation function, which is
suitable to convert any password into a cryptographic key. This is most
often used to for secure storage of passwords but can also be used to
derive an encryption key from a password. It offers variable time and
memory costs as well as output size.
tweaks/ok bluhm@