pkgsrc/security
wiz 720d702f91 openssh: update to 9.0.1.
Changes since OpenSSH 8.9
=========================

This release is focused on bug fixing.

Potentially-incompatible changes
--------------------------------

This release switches scp(1) from using the legacy scp/rcp protocol
to using the SFTP protocol by default.

Legacy scp/rcp performs wildcard expansion of remote filenames (e.g.
"scp host:* .") through the remote shell. This has the side effect of
requiring double quoting of shell meta-characters in file names
included on scp(1) command-lines, otherwise they could be interpreted
as shell commands on the remote side.

This creates one area of potential incompatibility: scp(1) when using
the SFTP protocol no longer requires this finicky and brittle quoting,
and attempts to use it may cause transfers to fail. We consider the
removal of the need for double-quoting shell characters in file names
to be a benefit and do not intend to introduce bug-compatibility for
legacy scp/rcp in scp(1) when using the SFTP protocol.

Another area of potential incompatibility relates to the use of remote
paths relative to other user's home directories, for example -
"scp host:~user/file /tmp". The SFTP protocol has no native way to
expand a ~user path. However, sftp-server(8) in OpenSSH 8.7 and later
support a protocol extension "expand-path () openssh com" to support
this.

In case of incompatibility, the scp(1) client may be instructed to use
the legacy scp/rcp using the -O flag.

New features
------------

 * ssh(1), sshd(8): use the hybrid Streamlined NTRU Prime + x25519 key
   exchange method by default ("sntrup761x25519-sha512 () openssh com").
   The NTRU algorithm is believed to resist attacks enabled by future
   quantum computers and is paired with the X25519 ECDH key exchange
   (the previous default) as a backstop against any weaknesses in
   NTRU Prime that may be discovered in the future. The combination
   ensures that the hybrid exchange offers at least as good security
   as the status quo.

   We are making this change now (i.e. ahead of cryptographically-
   relevant quantum computers) to prevent "capture now, decrypt
   later" attacks where an adversary who can record and store SSH
   session ciphertext would be able to decrypt it once a sufficiently
   advanced quantum computer is available.

 * sftp-server(8): support the "copy-data" extension to allow server-
   side copying of files/data, following the design in
   draft-ietf-secsh-filexfer-extensions-00. bz2948

 * sftp(1): add a "cp" command to allow the sftp client to perform
   server-side file copies.

Bugfixes
--------

 * ssh(1), sshd(8): upstream: fix poll(2) spin when a channel's output
   fd closes without data in the channel buffer. bz3405 and bz3411

 * sshd(8): pack pollfd array in server listen/accept loop. Could
   cause the server to hang/spin when MaxStartups > RLIMIT_NOFILE

 * ssh-keygen(1): avoid NULL deref via the find-principals and
   check-novalidate operations. bz3409 and GHPR#307 respectively.

 * scp(1): fix a memory leak in argument processing. bz3404

 * sshd(8): don't try to resolve ListenAddress directives in the sshd
   re-exec path. They are unused after re-exec and parsing errors
   (possible for example if the host's network configuration changed)
   could prevent connections from being accepted.

 * sshd(8): when refusing a public key authentication request from a
   client for using an unapproved or unsupported signature algorithm
   include the algorithm name in the log message to make debugging
   easier.

Portability
-----------

 * sshd(8): refactor platform-specific locked account check, fixing
   an incorrect free() on platforms with both libiaf and shadow
   passwords (probably only Unixware) GHPR#284,

 * ssh(1), sshd(8): Fix possible integer underflow in scan_scaled(3)
   parsing of K/M/G/etc quantities. bz#3401.

 * sshd(8): provide killpg implementation (mostly for Tandem NonStop)
   GHPR#301.

 * Check for missing ftruncate prototype. GHPR#301

 * sshd(8): default to not using sandbox when cross compiling. On most
   systems poll(2) does not work when the number of FDs is reduced
   with setrlimit, so assume it doesn't when cross compiling and we
   can't run the test.  bz#3398.

 * sshd(8): allow ppoll_time64 in seccomp sandbox. Should fix sandbox
   violations on some (at least i386 and armhf) 32bit Linux platforms.
   bz#3396.

 * Improve detection of -fzero-call-used-regs=all support in
   configure script.

Security Near Miss
==================

 * sshd(8): fix an integer overflow in the user authentication path
   that, in conjunction with other logic errors, could have yielded
   unauthenticated access under difficult to exploit conditions.

   This situation is not exploitable because of independent checks in
   the privilege separation monitor. Privilege separation has been
   enabled by default in since openssh-3.2.2 (released in 2002) and
   has been mandatory since openssh-7.5 (released in 2017). Moreover,
   portable OpenSSH has used toolchain features available in most
   modern compilers to abort on signed integer overflow since
   openssh-6.5 (released in 2014).

   Thanks to Malcolm Stagg for finding and reporting this bug.

Potentially-incompatible changes
================================

 * sshd(8), portable OpenSSH only: this release removes in-built
   support for MD5-hashed passwords. If you require these on your
   system then we recommend linking against libxcrypt or similar.

 * This release modifies the FIDO security key middleware interface
   and increments SSH_SK_VERSION_MAJOR.

Changes since OpenSSH 8.8
=========================

This release includes a number of new features.

New features
------------

 * ssh(1), sshd(8), ssh-add(1), ssh-agent(1): add a system for
   restricting forwarding and use of keys added to ssh-agent(1)
   A detailed description of the feature is available at
   https://www.openssh.com/agent-restrict.html and the protocol
   extensions are documented in the PROTOCOL and PROTOCOL.agent
   files in the source release.

 * ssh(1), sshd(8): add the sntrup761x25519-sha512@openssh.com hybrid
   ECDH/x25519 + Streamlined NTRU Prime post-quantum KEX to the
   default KEXAlgorithms list (after the ECDH methods but before the
   prime-group DH ones). The next release of OpenSSH is likely to
   make this key exchange the default method.

 * ssh-keygen(1): when downloading resident keys from a FIDO token,
   pass back the user ID that was used when the key was created and
   append it to the filename the key is written to (if it is not the
   default). Avoids keys being clobbered if the user created multiple
   resident keys with the same application string but different user
   IDs.

 * ssh-keygen(1), ssh(1), ssh-agent(1): better handling for FIDO keys
   on tokens that provide user verification (UV) on the device itself,
   including biometric keys, avoiding unnecessary PIN prompts.

 * ssh-keygen(1): add "ssh-keygen -Y match-principals" operation to
   perform matching of principals names against an allowed signers
   file. To be used towards a TOFU model for SSH signatures in git.

 * ssh-add(1), ssh-agent(1): allow pin-required FIDO keys to be added
   to ssh-agent(1). $SSH_ASKPASS will be used to request the PIN at
   authentication time.

 * ssh-keygen(1): allow selection of hash at sshsig signing time
   (either sha512 (default) or sha256).

 * ssh(1), sshd(8): read network data directly to the packet input
   buffer instead of indirectly via a small stack buffer. Provides a
   modest performance improvement.

 * ssh(1), sshd(8): read data directly to the channel input buffer,
   providing a similar modest performance improvement.

 * ssh(1): extend the PubkeyAuthentication configuration directive to
   accept yes|no|unbound|host-bound to allow control over one of the
   protocol extensions used to implement agent-restricted keys.

Bugfixes
--------

 * sshd(8): document that CASignatureAlgorithms, ExposeAuthInfo and
   PubkeyAuthOptions can be used in a Match block. PR#277.

 * sshd(8): fix possible string truncation when constructing paths to
   .rhosts/.shosts files with very long user home directory names.

 * ssh-keysign(1): unbreak for KEX algorithms that use SHA384/512
   exchange hashes

 * ssh(1): don't put the TTY into raw mode when SessionType=none,
   avoids ^C being unable to kill such a session. bz3360

 * scp(1): fix some corner-case bugs in SFTP-mode handling of
   ~-prefixed paths.

 * ssh(1): unbreak hostbased auth using RSA keys. Allow ssh(1) to
   select RSA keys when only RSA/SHA2 signature algorithms are
   configured (this is the default case). Previously RSA keys were
   not being considered in the default case.

 * ssh-keysign(1): make ssh-keysign use the requested signature
   algorithm and not the default for the key type. Part of unbreaking
   hostbased auth for RSA/SHA2 keys.

 * ssh(1): stricter UpdateHostkey signature verification logic on
   the client- side. Require RSA/SHA2 signatures for RSA hostkeys
   except when RSA/SHA1 was explicitly negotiated during initial
   KEX; bz3375

 * ssh(1), sshd(8): fix signature algorithm selection logic for
   UpdateHostkeys on the server side. The previous code tried to
   prefer RSA/SHA2 for hostkey proofs of RSA keys, but missed some
   cases. This will use RSA/SHA2 signatures for RSA keys if the
   client proposed these algorithms in initial KEX. bz3375

 * All: convert all uses of select(2)/pselect(2) to poll(2)/ppoll(2).
   This includes the mainloops in ssh(1), ssh-agent(1), ssh-agent(1)
   and sftp-server(8), as well as the sshd(8) listen loop and all
   other FD read/writability checks. On platforms with missing or
   broken poll(2)/ppoll(2) syscalls a select(2)-based compat shim is
   available.

 * ssh-keygen(1): the "-Y find-principals" command was verifying key
   validity when using ca certs but not with simple key lifetimes
   within the allowed signers file.

 * ssh-keygen(1): make sshsig verify-time argument parsing optional

 * sshd(8): fix truncation in rhosts/shosts path construction.

 * ssh(1), ssh-agent(1): avoid xmalloc(0) for PKCS#11 keyid for ECDSA
   keys (we already did this for RSA keys). Avoids fatal errors for
   PKCS#11 libraries that return empty keyid, e.g. Microchip ATECC608B
   "cryptoauthlib"; bz#3364

 * ssh(1), ssh-agent(1): improve the testing of credentials against
   inserted FIDO: ask the token whether a particular key belongs to
   it in cases where the token supports on-token user-verification
   (e.g. biometrics) rather than just assuming that it will accept it.

   Will reduce spurious "Confirm user presence" notifications for key
   handles that relate to FIDO keys that are not currently inserted in at
   least some cases. bz3366

 * ssh(1), sshd(8): correct value for IPTOS_DSCP_LE. It needs to
   allow for the preceding two ECN bits. bz#3373

 * ssh-keygen(1): add missing -O option to usage() for the "-Y sign"
   option.

 * ssh-keygen(1): fix a NULL deref when using the find-principals
   function, when matching an allowed_signers line that contains a
   namespace restriction, but no restriction specified on the
   command-line

 * ssh-agent(1): fix memleak in process_extension(); oss-fuzz
   issue #42719

 * ssh(1): suppress "Connection to xxx closed" messages when LogLevel
   is set to "error" or above. bz3378

 * ssh(1), sshd(8): use correct zlib flags when inflate(3)-ing
   compressed packet data. bz3372

 * scp(1): when recursively transferring files in SFTP mode, create the
   destination directory if it doesn't already exist to match scp(1) in
   legacy RCP mode behaviour.

 * scp(1): many improvements in error message consistency between scp(1)
   in SFTP mode vs legacy RCP mode.

 * sshd(8): fix potential race in SIGTERM handling PR#289

 * ssh(1), ssh(8): since DSA keys are deprecated, move them to the
   end of the default list of public keys so that they will be tried
   last. PR#295

 * ssh-keygen(1): allow 'ssh-keygen -Y find-principals' to match
   wildcard principals in allowed_signers files

Portability
-----------

 * ssh(1), sshd(8): don't trust closefrom(2) on Linux. glibc's
   implementation does not work in a chroot when the kernel does not
   have close_range(2). It tries to read from /proc/self/fd and when
   that fails dies with an assertion of sorts. Instead, call
   close_range(2) directly from our compat code and fall back if
   that fails.  bz#3349,

 * OS X poll(2) is broken; use compat replacement. For character-
   special devices like /dev/null, Darwin's poll(2) returns POLLNVAL
   when polled with POLLIN. Apparently this is Apple bug 3710161 -
   not public but a websearch will find other OSS projects
   rediscovering it periodically since it was first identified in
   2005.

 * Correct handling of exceptfds/POLLPRI in our select(2)-based
   poll(2)/ppoll(2) compat implementation.

 * Cygwin: correct checking of mbstowcs() return value.

 * Add a basic SECURITY.md that refers people to the openssh.com
   website.

 * Enable additional compiler warnings and toolchain hardening flags,
   including -Wbitwise-instead-of-logical, -Wmisleading-indentation,
   -fzero-call-used-regs and -ftrivial-auto-var-init.

 * HP/UX. Use compat getline(3) on HP-UX 10.x, where the libc version
   is not reliable.
2022-05-15 19:21:55 +00:00
..
2fa Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
acmesh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
age Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
aide security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
aide06 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
amap security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
amass Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
antonym security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ap-modsecurity2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
apg security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
argon2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
arirang security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
asignify security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
authelia Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
avcheck security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
Bastille security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
bcrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
bearssl security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
beecrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
bitstir security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
botan1 botan1: pkglint fixes 2022-04-01 08:04:55 +00:00
botan2 botan2: fix bl3.mk 2022-04-01 08:06:26 +00:00
ca-certificates *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
caff security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
cargo-audit cargo-audit: simplify, and fix download 2022-04-21 07:57:30 +00:00
ccid ccid: Update to 1.5.0 2022-01-27 13:21:20 +00:00
cfs security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
chkrootkit security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
clamav security/clamav: update to 0.103.6 2022-05-05 00:44:07 +00:00
clamav-doc clamav-doc: fix PLIST 2022-05-15 04:46:32 +00:00
clusterssh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
codecrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
CoolKey security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
courier-authlib security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
crack security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
cracklib security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
crudesaml security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
crypto++ security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
CSP security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
cvm security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
cy2-anonymous
cy2-crammd5
cy2-digestmd5 cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cy2-gssapi cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cy2-ldapdb cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cy2-login
cy2-ntlm cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cy2-otp cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cy2-plain
cy2-saml revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
cy2-scram cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cy2-sql revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
cyrus-sasl cyrus-sasl: update to 2.1.28 2022-02-24 11:00:03 +00:00
cyrus-sasl-xoauth2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
cyrus-saslauthd cyrus-saslauthd: let the RC script work unprivileged 2022-05-10 03:34:16 +00:00
dcfldd dcfldd: Fix build on SunOS/x86. 2022-03-04 18:51:47 +00:00
ddos-scan security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
dehydrated security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
destroy security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
dhbitty security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
dirb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dnssec-tools security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
doas security/doas: change Maintainer 2021-12-09 18:46:38 +00:00
dropbear security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
dsniff revbump for icu and libffi 2021-12-08 16:01:42 +00:00
dsniff-nox11 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
duo-unix security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
easy-rsa security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
EasyPG Bump all elisp packages for the CONFLICTS change. 2022-05-14 22:25:32 +00:00
ecap_clamav_adapter revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
egd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ent security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
erlang-epam security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
erlang-fast_tls security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
erlang-jose security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
erlang-p1_acme security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
erlang-p1_oauth2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
erlang-pkix security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
fail2ban fail2ban: convert to egg.mk 2022-01-10 08:14:30 +00:00
flawfinder security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
fprint-demo revbump for icu and libffi 2021-12-08 16:01:42 +00:00
fsh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
fwbuilder revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gcr *: recursive bump for vala 0.56 2022-03-30 10:02:21 +00:00
gnome-keyring revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnu-crypto security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
gnu-pw-mgr security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
gnupg *: Remove dodgy hacks for NetBSD versions older than 5. 2022-05-10 11:50:54 +00:00
gnupg-pkcs11-scd revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gnupg2 gnupg2: updated to 2.2.35 2022-04-26 08:15:35 +00:00
gnutls gnutls: updated to 3.7.4 2022-03-17 21:16:25 +00:00
go-asn1-ber Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
go-crypto Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
go-mkcert Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
google-authenticator security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
gpa revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gpg-tui security/gpg-tui: update to 0.8.3 2022-02-21 09:42:25 +00:00
gpg2dot *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
gpgme gpgme: update to 1.17.1. 2022-04-21 09:45:34 +00:00
gpgmepp revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
gsasl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
gss security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
hackbot security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
hashcash security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
hashcat hashcat: import version 6.2.5 2022-01-10 02:30:23 +00:00
heimdal revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
heirloom-su
HElib security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
hercules4sdl-crypto security/hercules4sdl-crypto: add missing patch file. 2022-01-19 20:18:17 +00:00
hitch hitch: update to 1.7.2 2022-03-11 21:36:01 +00:00
honeyd revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
honeyd-arpd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
hs-cryptohash-md5 Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-cryptohash-sha1 Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-cryptohash-sha256 Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-cryptonite Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-digest Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-ed25519 Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-entropy Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-hackage-security Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-pem Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-SHA Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-tls Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-tls-session-manager Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-x509 Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-x509-store Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-x509-system Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hs-x509-validation Bump all Haskell packages after enabling "split sections" in mk/haskell.mk 2022-02-26 03:57:43 +00:00
hydan security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
hydra revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ike-scan security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ipv6-toolkit security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
john security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
kauth kauth: update to version 5.93.0 2022-04-25 06:29:40 +00:00
kdesu kdesu: update to 5.93.0 2022-04-25 06:31:34 +00:00
KeePass revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
keepassxc keepassxc: update to 2.7.1. 2022-04-20 21:24:52 +00:00
keychain security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
kgpg revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
knc security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
kpcli security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
kstart security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
kwallet kwallet: update to 5.93.0 2022-04-25 06:33:43 +00:00
kwalletmanager revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
lasso revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
lastpass-cli revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libassuan2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libb2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libbf security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libcrack security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libcurvecpr security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libdecaf security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libdes security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libfido2 libfido2: needs pkg-config 2022-04-19 07:11:10 +00:00
libfprint revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libfwbuilder revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libgabe revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libgcrypt libgcrypt: updated to 1.10.1 2022-03-29 07:16:00 +00:00
libgfshare security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libgnome-keyring revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libgpg-error libgpg-error: updated to 1.45 2022-04-08 06:39:42 +00:00
libidea security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libident security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libksba libksba: updated to 1.6.0 2022-01-13 08:07:20 +00:00
libmcrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libmerkletree
libmultigest
libnetpgpverify
liboauth revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libp11 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libpbc security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libpe security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libprelude libprelude: master site is gone for this 10 year out-of-date version 2022-04-23 11:56:24 +00:00
libprelude-lua revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libprelude-perl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libprelude-python libprelude-python: fix PLIST 2022-02-01 11:38:39 +00:00
libpreludedb revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libpreludedb-mysql revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libpreludedb-perl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libpreludedb-pgsql revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libpreludedb-python libpreludedb-python: fix PLIST 2022-02-01 11:41:47 +00:00
libpreludedb-sqlite3 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
libpwquality security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libressl security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libretls Update to 3.4.2. From the LibreSSL changelog: 2021-12-18 13:55:18 +00:00
libsecp256k1 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libsecret *: recursive bump for vala 0.56 2022-03-30 10:02:21 +00:00
libsodium security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libssh libssh: stop pulling in argp in buildlink3.mk 2022-01-29 18:05:30 +00:00
libssh2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libstark libstark: fix build 2022-04-02 11:31:54 +00:00
libtasn1 libtasn1: update to 4.18.0. 2021-11-16 14:32:39 +00:00
libtcpa security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libtomcrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libuecc security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
libykneomgr revbump for icu and libffi 2021-12-08 16:01:42 +00:00
libyubikey security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
log2timeline security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
logcheck security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
lsh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
lua-arc4random security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
lua-argon2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
lua-bcrypt lua-bcrypt: update to 2.2.1 2022-01-16 13:41:13 +00:00
lua-cyrussasl lua-cyrussasl: fix build in privileged mode 2022-05-09 00:41:57 +00:00
lua-ossl security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
lua-sec lua-sec: update to 1.0.2 2021-12-10 13:23:56 +00:00
lxqt-openssh-askpass Apply PKGREVISION bumps due to qtxdg-tools split-out 2022-05-11 00:57:30 +00:00
lxqt-policykit Apply PKGREVISION bumps due to qtxdg-tools split-out 2022-05-11 00:57:30 +00:00
lxqt-sudo Apply PKGREVISION bumps due to qtxdg-tools split-out 2022-05-11 00:57:30 +00:00
lynis security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mate-polkit revbump for icu and libffi 2021-12-08 16:01:42 +00:00
mbedtls security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mcrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
md4-collision security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
md5-collision security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mdigest security/mdigest: Update to 1.9 2021-11-19 11:53:45 +00:00
merkletree
mhash security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
minisign security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mirrordir security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mit-krb5 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mit-krb5-appl security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
monocypher security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mozilla-rootcerts security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
mozilla-rootcerts-openssl mozilla-rootcerts-openssl: Generate replaced PLIST automatically 2021-10-22 16:56:39 +00:00
msu security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
msudir security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
multigest
munge munge: remove platform specific PLISTs, files are unconditionally installed 2022-04-23 22:50:50 +00:00
nacl Borrow build and runtime fixes from Debian. Fixes aarch64 build on 2022-01-05 13:51:19 +00:00
netpgp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
netpgpverify netpgpverify: add configure quirks to get strtoull on legacy platforms 2022-04-03 22:22:55 +00:00
netramet security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
nettle security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
nfsbug security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
nikto security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
oath-toolkit revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
ocaml-cryptokit Update security/ocaml-cryptokit to version 1.17. 2022-05-11 11:07:39 +00:00
ocaml-safepass security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ocaml-ssl Updated security/ocaml-ssl to version 0.5.10. 2022-05-04 09:08:23 +00:00
olm olm: avoid ambiguous math functions 2022-04-25 13:58:46 +00:00
opencdk security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
openct security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
opendnssec revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
opendnssec2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
opendoas opendoas: Work around some blatant problems on NetBSD with implict 2022-05-09 15:21:19 +00:00
openpam security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
opensaml *: Recursive revbump from boost 1.78.0 2022-01-10 01:46:21 +00:00
opensc revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
openssh openssh: update to 9.0.1. 2022-05-15 19:21:55 +00:00
openssl openssl: update to 1.1.1o. 2022-05-10 05:43:50 +00:00
otpCalc security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p0f security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-AuthCAS security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-CAS-Client security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-Htpasswd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-PAM security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-PluggableCaptcha security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-SASL security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-SASL-Authd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-SASL-Cyrus security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-Simple security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Authen-TacacsPlus security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-BSD-arc4random security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Bytes-Random-Secure security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Blowfish security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Blowfish_PP security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-CAST5_PP security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-CBC security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-CipherSaber security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Curve25519 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-DES security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-DES_EDE3 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-DH security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-DH-GMP security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-DSA security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-ECB security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Eksblowfish security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-GeneratePassword security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-GPG security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-HSXKPasswd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-IDEA security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Juniper Add p5-Juniper-Crypt version 0.02. 2021-11-30 19:47:35 +00:00
p5-Crypt-JWT Update to 0.034 2022-03-20 01:43:36 +00:00
p5-Crypt-OpenPGP security/p5-Crypt-OpenPGP: installs an executable requiring devel/p5-Term-ReadKey 2022-04-03 07:53:14 +00:00
p5-Crypt-OpenSSL-AES security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-OpenSSL-Bignum security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-OpenSSL-DSA security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-OpenSSL-Guess Update to 0.15 2022-03-20 01:48:58 +00:00
p5-Crypt-OpenSSL-Random p5-Crypt-OpenSSL-Random: fix build on macOS 2021-12-15 20:40:42 +00:00
p5-Crypt-OpenSSL-RSA p5-Crypt-OpenSSL-RSA: fix build on macOS 2021-12-15 20:42:13 +00:00
p5-Crypt-PasswdMD5 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-PBKDF2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Primes security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-PWSafe3 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Random security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Random-Seed security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Random-TESHA2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-RandPasswd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-RC4 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Rijndael security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-RIPEMD160 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-RSA security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-SmbHash security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-SMIME security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-SSLeay security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-Twofish security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-URandom security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Crypt-X509 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-CryptX security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Dancer-Plugin-Auth-RBAC security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Data-Password-passwdqc security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Data-SimplePassword security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-BubbleBabble security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-CRC security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-Hashcash security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-HMAC security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-JHash security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-MD2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-MD4 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-MD5-File security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-Nilsimsa security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-Perl-MD5 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-SHA1 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Digest-SHA3 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-File-KeePass security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-GnuPG-Interface security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-GSSAPI security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-IO-Socket-SSL security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Module-Signature security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Mozilla-CA security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Net-DNS-SEC Update to 1.19 2022-04-03 07:40:44 +00:00
p5-Net-DNS-SEC-Maint-Key security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Net-OpenSSH security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Net-SFTP security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Net-SSH security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Net-SSLeay Fix building on Mac OS X 2021-11-21 20:51:36 +00:00
p5-Netpgp-Verify security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-pcsc security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-SHA security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-String-Random security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Text-Password-Pronounceable security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p5-Tie-EncryptedHash security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
p11-kit p11-kit: add readlink to tools 2022-02-07 08:05:05 +00:00
PACK security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pakchois security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pakemon revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pam-af pam-af: Respect LDFLAGS. Fixes RELRO build. 2022-04-02 11:12:01 +00:00
pam-fprint security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-krb5 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-ldap security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-mkhomedir
pam-mysql security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-p11 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-passwdqc pam-passwdqc: Respect LDFLAGS. Fixes RELRO build. 2022-04-02 11:08:47 +00:00
pam-pgsql security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-pwauth_suid
pam-radius security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-saml revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pam-tacplus security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pam-u2f pam-u2f: update to 1.2.0 2022-04-12 22:30:55 +00:00
pam-yubico revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pam_ssh_agent_auth Fix packages that use GITSUB_MODULES on SunOS and possibly others 2022-01-09 23:42:02 +00:00
paperkey security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
passphrase security/passphrase: don't use RELRO for now. 2022-02-24 21:29:12 +00:00
password-store Install shell-completion scripts into shell-specific directories 2021-11-23 07:50:15 +00:00
pcsc-lite pcsc-lite: updated to 1.9.5 2022-01-10 16:11:52 +00:00
pcsc-tools security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pear-Crypt_GPG security/pear-Crypt_GPG: update to 1.6.7 2022-02-20 13:15:14 +00:00
pev security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pgp2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pgp5 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pgpdump security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pgpenvelope security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
php-gnupg security/php-gnupg: update to 1.5.1 2022-01-10 14:16:40 +00:00
php-mcrypt
php-oauth revbump for icu and libffi 2021-12-08 16:01:42 +00:00
php-oauth1 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
php-pecl-mcrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
php-sodium
php-ssdeep security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
php-ssh2 security/php-ssh2: update to 1.3.1 2021-12-12 15:20:00 +00:00
php-ssh2-0 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
php-suhosin security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pinentry pinentry: updated to 1.2.0 2022-01-13 08:05:48 +00:00
pinentry-fltk pinentry: updated to 1.2.0 2022-01-13 08:05:48 +00:00
pinentry-gnome3 pinentry: updated to 1.2.0 2022-01-13 08:05:48 +00:00
pinentry-gtk2 pinentry: updated to 1.2.0 2022-01-13 08:05:48 +00:00
pinentry-mac security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pinentry-qt5 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
pinepgp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pius pius: convert to egg.mk 2022-01-10 08:31:01 +00:00
pkcs11-helper revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pks security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pleaser security/pleaser: update to 0.5.1 2021-12-06 21:42:26 +00:00
policykit revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
policykit-gnome revbump for icu and libffi 2021-12-08 16:01:42 +00:00
polkit *: Replace per-package msgfmt hacks with msgfmt-desktop.mk 2022-03-12 08:01:48 +00:00
polkit-qt revbump for icu and libffi 2021-12-08 16:01:42 +00:00
polkit-qt5 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
PortableSigner security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
portsentry security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
prelude-correlator python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
prelude-lml revbump for icu and libffi 2021-12-08 16:01:42 +00:00
prelude-manager revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
priv security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
prngd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
pscan security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
putty revbump for icu and libffi 2021-12-08 16:01:42 +00:00
pwsafe security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
py-acme py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-acme-tiny *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-aes py-aes: fix PLIST for python 2.7 2022-01-22 14:29:17 +00:00
py-argon2-cffi *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-asn1 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-asn1-modules *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-asn1crypto py-asn1crypto: updated to 1.5.1 2022-05-10 17:25:26 +00:00
py-asyncssh py-asyncssh: updated to 2.9.0 2022-01-24 12:50:27 +00:00
py-authlib *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-backports.ssl_match_hostname *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-bcrypt *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-certbot py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-apache py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-digitalocean py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-dnsimple py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-dnsmadeeasy py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-gehirn py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-google py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-linode py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-luadns py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-nsone py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-ovh py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-rfc2136 py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-route53 py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-dns-sakuracloud py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certbot-nginx py-acme py-certbot: updated to 1.27.0 2022-05-04 11:27:09 +00:00
py-certifi *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-crack py-crack: fix PLIST for python 2.7 2022-01-22 14:28:27 +00:00
py-crcmod py-crcmod: fix PLIST for python 2.7 2022-01-22 14:26:55 +00:00
py-cryptkit *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-cryptodome py-cryptodome: updated to 3.14.1 2022-02-07 21:00:11 +00:00
py-cryptography py-cryptography: make python 3.x only 2022-04-21 11:09:04 +00:00
py-cryptography_vectors *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cybox *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-cyclonedx-bom python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-cyclonedx-python-lib py-cyclonedx-python-lib: update to 2.3.0. 2022-04-20 21:29:08 +00:00
py-denyhosts py-denyhosts: convert to egg.mk 2022-01-19 18:09:08 +00:00
py-ecdsa *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-fido2 *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-gnupg py-gnupg: updated to 0.4.8 2022-01-11 08:45:10 +00:00
py-google-auth *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-google-auth-httplib2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-google-auth-oauthlib python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-google-reauth *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-gssapi py-gssapi: updated to 1.7.3 2022-04-07 07:16:20 +00:00
py-hkdf *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-hsm *: set USE_PKG_RESOURCES for more packages 2022-01-05 20:47:34 +00:00
py-itsdangerous py-itsdangerous: update to 2.1.2. 2022-04-29 12:05:02 +00:00
py-josepy py-josepy: updated to 1.13.0 2022-03-17 08:16:22 +00:00
py-kerberos *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-keyring python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-keyrings.alt *: setuptools_scm: switch to versioned_dependencies 2022-01-13 19:31:20 +00:00
py-lasso revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
py-libnacl *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-libtaxii python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-mcrypt *: python2 egg files are back, add them to the PLISTs 2022-01-14 17:51:50 +00:00
py-mohawk *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-nacl *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-ndg_httpsclient python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-ntlm-auth *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-oath *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-oauth2client *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-oauthlib py-oauthlib: updated to 3.2.0 2022-02-06 19:00:51 +00:00
py-olm py-olm: fix build for python 2.7 2022-01-25 13:12:49 +00:00
py-openid py-openid: convert to egg.mk 2022-01-22 14:25:43 +00:00
py-OpenSSL *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-OTXv2 py-OTXv2: convert to egg.mk 2022-01-19 18:02:32 +00:00
py-paramiko py-paramiko: updated to 2.10.4 2022-05-05 17:59:35 +00:00
py-passlib *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-pbkdf2 py-pbkdf2: remove incorrect EGG_NAME 2022-01-14 09:28:40 +00:00
py-pip-audit py-pip-audit: update to 2.2.1. 2022-05-10 05:59:58 +00:00
py-prewikka py-prewikka: fix and sort PLIST 2022-02-03 23:54:36 +00:00
py-pydeep *: fix for python 3.x 2022-01-19 17:50:45 +00:00
py-requests-gssapi *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-requests-kerberos *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-requests-ntlm *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-requests-oauthlib py-requests-oauthlib: updated to 1.3.1 2022-02-06 19:04:17 +00:00
py-rsa python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py-rsa40 *: remove workaround patches for python 3.6 2022-01-14 11:49:41 +00:00
py-service_identity *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-signedjson py-signedjson: updated to 1.1.4 2022-04-14 20:35:37 +00:00
py-simplesha3 *: fix for python 3.x 2022-01-19 17:50:45 +00:00
py-slowaes *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-smbpasswd py-smbpasswd: convert to egg.mk 2022-01-19 18:11:02 +00:00
py-solo security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
py-spake2 *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-stix *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-tlslite *: fix for python 3.x 2022-01-19 17:50:45 +00:00
py-trustme *: convert to versioned_dependencies for py-cryptography 2022-04-21 10:59:59 +00:00
py-trytond-authentication-sms *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-u2f py-u2f: do not TEST_DEPEND on py-fakefs for Python 2.7 2022-05-12 08:15:48 +00:00
py-urllib2-kerberos *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-xmlsec revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
py-yara *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-yubiauth *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
py-yubikey-manager python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
py27-cryptography *: fix usage of versioned_dependencies 2022-05-01 09:45:41 +00:00
pyca security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
qca2 revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qca2-gnupg revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qca2-ossl revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qca2-qt5 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
qca2-qt5-gnupg revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
qca2-qt5-ossl revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
qgpgme revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
qident security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
qoauth revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qore-ssh2-module Update qore-ssh2-module to version 1.4.1 2022-01-27 18:20:27 +00:00
qore-xmlsec-module revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
qt4-qtkeychain revbump for icu and libffi 2021-12-08 16:01:42 +00:00
qt5-qtkeychain revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
R-argon2 (security/R-argon2) Updated 0.2.0 to 0.4.0 2022-05-11 13:35:27 +00:00
R-askpass security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
R-credentials (security/R-credentials) Updated 1.3.0 to 1.3.2 2022-05-11 14:22:23 +00:00
R-digest (security/R-digest) Updated 0.6.25 to 0.6.29 2022-05-11 13:48:07 +00:00
R-getPass security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
R-gitcreds security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
R-openssl (security/R-openssl) Updated 1.4.3 to 2.0.0 2022-05-11 14:03:37 +00:00
R-oskeyring (security/R-oskeyring) Updated 0.1.1 to 0.1.3 2022-05-11 14:26:59 +00:00
racoon2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
rc5des security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
rid security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
rsaref security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-airbrussh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-bcrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-bcrypt_pbkdf security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-certified security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-chef-vault security/ruby-chef-vault: update to 4.1.5 2021-12-19 06:41:31 +00:00
ruby-ed25519 security/ruby-ed25519: update to 1.3.0 2022-02-14 14:17:24 +00:00
ruby-ezcrypto security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-gssapi security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-hmac security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-jsobfu security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-metasploit-concern security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-metasploit-model security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-metasploit-payloads security/ruby-metasploit-payloads: update to 2.0.74 2022-02-14 14:41:02 +00:00
ruby-metasploit_payloads-mettle security/ruby-metasploit_payloads-mettle: update to 1.0.18 2022-02-14 14:45:42 +00:00
ruby-nessus_rest security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-net-scp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-net-sftp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-net-ssh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-net-ssh-gateway security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-net-ssh-multi security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-nexpose security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-oauth security/ruby-oauth: update to 0.5.8 2021-11-28 14:11:14 +00:00
ruby-openid security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-openssl-ccm security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-openssl-cmac security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-openvas-omp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-password security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rack-openid security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rbnacl security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rc4 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-arch security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-bin_tools security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-core security/ruby-rex-core: update to 0.1.20 2021-12-11 13:53:21 +00:00
ruby-rex-encoder security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-exploitation security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-java security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-mime security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-nop security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-ole security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-powershell security/ruby-rex-powershell: update to 0.1.94 2021-12-11 13:55:35 +00:00
ruby-rex-random_identifier security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-registry security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-rop_builder security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-socket security/ruby-rex-socket: update to 0.1.34 2021-12-11 13:58:14 +00:00
ruby-rex-sslscan security/ruby-rex-sslscan: update to 0.1.7 2021-12-11 13:59:56 +00:00
ruby-rex-struct2 security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-text security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rex-zip security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rotp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-ruby-openid security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-rubyntlm security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-shadow security/ruby-shadow: update to 2.5.1 2021-12-11 14:04:28 +00:00
ruby-simple_oauth security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-sshkey security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-sshkit security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-sslshake security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-tcpwrap security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-twitter_oauth security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ruby-vault security/ruby-vault: add package version 0.16.0 2021-12-11 14:07:31 +00:00
rvault revbump for icu and libffi 2021-12-08 16:01:42 +00:00
sbd security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
scanssh security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
scm-blackbox security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
scrypt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
seahorse revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
seccure security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
secpanel secpanel: fix master site 2022-05-03 01:26:54 +00:00
skey skey: fix building on Solaris 10 2022-01-19 22:10:16 +00:00
sks security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sleuthkit security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
smaSHeM security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
snallygaster *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
sniff security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
snoopy security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
snortsnarf security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
snow security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
softhsm revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
softhsm2 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
spiped security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sqlmap python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
srm security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ssdeep security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ssh-askpass security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sshfp security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sshguard security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sshpass security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ssldump security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sslproxy security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sslsplit security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ssss security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
starttls security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
steghide steghide: fix building with modern C++ compilers 2022-05-05 12:20:34 +00:00
stegtunnel security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
stunnel security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
sudo sudo: fix PLIST for LDAP 2022-05-14 06:48:11 +00:00
tcl-tls security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
tcp_wrappers security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
tct security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
tkpasman security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
tlswrapper Update to 20220114. From the changelog: 2022-01-15 19:04:24 +00:00
tor-browser firefox*: Use OPSYS_VERSION to numerically compare NetBSD versions 2022-05-05 08:21:33 +00:00
tor-browser-https-everywhere tor-browser-https-everywhere: update to 2022.3.24. 2022-03-30 09:23:29 +00:00
tor-browser-noscript tor-browser*: reset maintainer 2022-02-16 10:25:15 +00:00
tripwire security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
TweetNaCl security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
validns security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
vault Revbump all Go packages after go118 update 2022-05-11 19:26:18 +00:00
volatility *: bump PKGREVISION for egg.mk users 2022-01-04 20:53:26 +00:00
wfuzz python: egg.mk: add USE_PKG_RESOURCES flag 2022-01-05 15:40:56 +00:00
wolfssl security/wolfssl: Update to v5.3.0 2022-05-07 07:47:36 +00:00
xca revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
xml-security-c security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
xmlsec1 revbump for textproc/icu update 2022-04-18 19:09:40 +00:00
yafic security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
yara security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
ykclient revbump for icu and libffi 2021-12-08 16:01:42 +00:00
ykman
ykpers security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
zebedee security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
zkt security: Replace RMD160 checksums with BLAKE2s checksums 2021-10-26 11:16:56 +00:00
zoneminder To fix Linux readv/writev, back-port: 2022-01-12 11:53:26 +00:00
Makefile fragroute: remove 2022-05-15 04:49:15 +00:00