Commit Graph

6578 Commits

Author SHA1 Message Date
ajacoutot
345a343427 Update to vault-1.5.3. 2020-08-30 15:27:07 +00:00
tb
902a90e4b9 Update to tlsfuzzer 20200828
jsing has upstreamed his zero content type test, which in turn found
bugs in GnuTLS and NSS - thanks!
2020-08-28 18:32:02 +00:00
cwen
2eede5f97d botan2: unbreak on !x86 archs
The latest botan2 version provides a new processor_rng feature, but the
feature is unavailable on most archs, breaking the packaging at least on
aarch64, macppc and sparc64 due to a missing header. Add that header to the
x86 PFRAG.

OK kmos@ (who tested on sparc64), bluhm@ (maintainer)
2020-08-27 23:12:20 +00:00
tb
49cdbfdd15 Update to tlsfuzzer 20200825 2020-08-27 16:10:12 +00:00
jmatthew
f23b711c61 update to 0.7.1 2020-08-27 10:27:31 +00:00
edd
983493caf5 Update to gnupg-2.2.21.
OK sthen@, thanks!
2020-08-25 18:20:17 +00:00
edd
6efacb81b4 Update to libksba-1.4.0.
OK sthen@, thanks!
2020-08-25 18:19:19 +00:00
landry
dae94c1fb0 Update to nss 3.56, req'd by gecko 81.
See https://developer.mozilla.org/fr/docs/Mozilla/Projects/NSS/NSS_3.56_release_notes
2020-08-25 13:43:38 +00:00
ajacoutot
de7167fbba Update to libgpg-error-1.39. 2020-08-25 09:01:29 +00:00
sthen
17175d7663 update to gpgme-1.14.0 2020-08-24 16:28:30 +00:00
rsadowski
4fb8b0ef8c Remove keepassx (Qt4)
With keepassxc we have a better alternative.

No objections from maintainer steven@
2020-08-22 09:04:10 +00:00
rsadowski
06818c31fb Remove QCA Qt4, long live qca-qt5 2020-08-22 08:45:48 +00:00
bluhm
6ed302ec63 update botan2 to 2.15.0 2020-08-21 23:29:18 +00:00
bluhm
655ccc98b7 update p5-Module-Signature to 0.87 2020-08-21 14:49:51 +00:00
rsadowski
f0bfa09ca1 Update keepassxc to 2.6.1
https://github.com/keepassxreboot/keepassxc/releases
2020-08-20 18:01:47 +00:00
ajacoutot
a7622880f1 Update to p11-kit-0.23.21. 2020-08-19 12:32:18 +00:00
ajacoutot
46fd384b52 Change the "FLAVOR ?= python3" contruct to "FLAVOR = python3" since these are
python3 only ports.

"Yes please, it's not really optional so I think = is better." sthen@
2020-08-19 12:25:12 +00:00
rsadowski
01ade98352 Update sshguard to 2.4.1
From maintainer Andreas Kusalananda Kähäri
2020-08-18 05:06:29 +00:00
sebastia
ebc65fe91c simple update 3.8.2 -> 3.8.6 2020-08-17 21:04:24 +00:00
sebastia
90f6a72b90 simple update 0.10.1 -> 0.12.1 2020-08-17 21:03:52 +00:00
sebastia
3a61b1e0b8 simple update 6.0.3 -> 6.1.1 2020-08-17 19:37:30 +00:00
tb
7b8ab3205f Update to tlsfuzzer 20200812 2020-08-15 16:38:04 +00:00
naddy
07d277bcfe bump the revived p5-Crypt-OpenPGP, the plist has changed 2020-08-14 19:42:19 +00:00
tb
3a3b720046 Add a test for zero content type from jsing
This checks whether a TLSv1.3 server handles the case of a record
with all-zero plaintext correctly (i.e., by sending an unexpected
message alert) in various contexts.  This would have caught a bug
where the LibreSSL TLSv1.3 record layer would call freezero() with
a size of -1.

What's missing is a test that sends a completely empty record. The
framework doesn't seem to permit that easily.
2020-08-13 17:16:05 +00:00
afresh1
476becf898 +p5-Alt-Crypt-RSA-BigInt +p5-Crypt-OpenPGP +p5-Unix-OpenBSD-Random 2020-08-13 03:10:37 +00:00
afresh1
9d77bcfc14 Bring back p5-Crypt-OpenPGP
The patch by me converts it to use arc4random_buf instead of normal
ways of getting random data.


Crypt::OpenPGP is a pure-Perl implementation of the OpenPGP standard.
In addition to support for the standard itself, Crypt::OpenPGP
claims compatibility with many other PGP implementations, both those
that support the standard and those that preceded it.

Crypt::OpenPGP provides signing/verification, encryption/decryption,
keyring management, and key-pair generation; in short it should
provide you with everything you need to PGP-enable yourself.
Alternatively it can be used as part of a larger system; for example,
perhaps you have a web-form-to-email generator written in Perl, and
you'd like to encrypt outgoing messages, because they contain
sensitive information. Crypt::OpenPGP can be plugged into such a
scenario, given your public key, and told to encrypt all messages;
they will then be readable only by you.

This module currently supports RSA and DSA for digital signatures,
and RSA and ElGamal for encryption/decryption. It supports the
symmetric ciphers 3DES, Blowfish, IDEA, Twofish, CAST5, and Rijndael
(AES). Rijndael is supported for key sizes of 128, 192, and 256
bits. Crypt::OpenPGP supports the digest algorithms MD5, SHA-1, and
RIPE-MD/160. And it supports ZIP and Zlib compression.

Originally from henning@ with patches and adjustements by me
OK sthen@
2020-08-13 03:09:52 +00:00
afresh1
07a64a758a Import security/p5-Unix-OpenBSD-Random
A wafer-thin wrapper around the arc4random(3) library function.

OK sthen@
2020-08-13 03:06:01 +00:00
afresh1
1f43e610fd Import security/p5-Alt-Crypt-RSA-BigInt
This is a rework of Crypt::RSA to remove Math::Pari and instead base
all operations on Math::BigInt.

This first version is intended to be a plug-in replacement for
Crypt::RSA, with no user-visible changes. This means some issues
will remain unresolved until future versions.

Originally from henning@ with adjustments by me
OK sthen@
2020-08-13 03:05:17 +00:00
naddy
e10775e205 pull in upstream fix so aarch64 builds; ok ajacoutot@ phessler@ 2020-08-11 10:50:55 +00:00
jmatthew
d75fbef5a8 update to 0.6.1 2020-08-08 11:05:26 +00:00
jasper
402f322974 switch py-ropper to python3 by default 2020-08-07 09:59:10 +00:00
tb
628b21d886 Update to tlsfuzzer 20200805 2020-08-07 03:56:22 +00:00
sebastia
5903365488 update to 2020-08-06 2020-08-06 10:35:09 +00:00
tb
b2813769da Update to tlsfuzzer 20200804 2020-08-05 09:58:28 +00:00
abieber
171c50893f Update to 1.9.2. Diff from Raymond E. Pasco <ray at ameretat dot dev>. Tweak
from me for setting main.version.

Thanks Raymond!
2020-08-01 14:43:32 +00:00
sthen
999eb1097f update to py-cryptography 3.0
drop maintainer
2020-08-01 11:47:16 +00:00
sthen
97ba85a83b drop maintainer 2020-08-01 11:30:36 +00:00
ajacoutot
3c0042b3a4 Remove reference to the mysql FLAVOR which doesn't exist.
Drop myself as maintainer while here.
2020-07-31 13:28:05 +00:00
benoit
483b37a045 Update to p5-Crypt-LE-0.36, from wen heping 2020-07-31 08:06:04 +00:00
rpointel
5f7f754eb8 update floss to 1.6.1. 2020-07-31 05:19:31 +00:00
tb
0f35bab626 Update to tlsfuzzer 20200725 2020-07-30 11:23:55 +00:00
pvk
a4c773a20b Change default SSH signature algorithm from sha to sha2-256
ok ajacoutot@
2020-07-30 08:14:53 +00:00
bket
5688f6f29e Update to rhash-1.4.0
Changes: https://github.com/rhash/RHash/releases/tag/v1.4.0.

OK sthen@
2020-07-29 13:33:22 +00:00
gonzalo
54116c7b26 Update SQLmap to 1.4.7
OK benoit@
2020-07-27 08:12:08 +00:00
kmos
87eebc03ae sslscan does not compile with base-gcc. Need at least ports-gcc for
non-base-clang architectures.

ok sthen (maintainer)
2020-07-26 20:03:34 +00:00
naddy
1ec3c8bf91 drop sslscan,openssl from category Makefile, too 2020-07-25 22:10:52 +00:00
sthen
e4103c34a0 update to sslscan-2.0.0, merge flavour into default version 2020-07-25 17:27:00 +00:00
robert
1a290538d4 update to openpam dated at 20200510 2020-07-25 09:47:59 +00:00
ajacoutot
05eb61fcd7 Update to vault-1.5.0. 2020-07-25 07:52:05 +00:00
landry
32637dc565 Update to nss 3.55, will be required by gecko 80.
See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.55_release_notes
2020-07-25 05:38:27 +00:00