libsodium: updated to 1.0.19

Version 1.0.19
  This release includes all the changes from 1.0.18-stable, as well as two
additions:

 - New AEADs: AEGIS-128L and AEGIS-256 are now available in the
`crypto_aead_aegis128l_*()` and `crypto_aead_aegis256_*()` namespaces.
AEGIS is a family of authenticated ciphers for high-performance applications,
leveraging hardware AES acceleration on `x86_64` and `aarch64`. In addition
to performance, AEGIS ciphers have unique properties making them easier and
safer to use than AES-GCM. They can also be used as high-performance MACs.
 - The HKDF key derivation mechanism, required by many standard protocols, is
now available in the `crypto_kdf_hkdf_*()` namespace. It is implemented for
the SHA-256 and SHA-512 hash functions.
 - The `osx.sh` build script was renamed to `macos.sh`.
 - Support for android-mips was removed.
This commit is contained in:
adam 2023-09-18 12:38:21 +00:00
parent ebe515b959
commit b0b5caa2dd
3 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.15 2019/05/31 20:49:02 adam Exp $
# $NetBSD: Makefile,v 1.16 2023/09/18 12:38:21 adam Exp $
DISTNAME= libsodium-1.0.18
DISTNAME= libsodium-1.0.19
CATEGORIES= security
MASTER_SITES= https://download.libsodium.org/libsodium/releases/
@ -13,6 +13,7 @@ USE_LIBTOOL= yes
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE= libsodium.pc.in
WRKSRC= ${WRKDIR}/libsodium-stable
TEST_TARGET= check
CTF_SUPPORTED= no # failed to get tag type: DW_DLE_DIE_NULL

View File

@ -1,6 +1,8 @@
@comment $NetBSD: PLIST,v 1.10 2019/05/31 20:49:02 adam Exp $
@comment $NetBSD: PLIST,v 1.11 2023/09/18 12:38:21 adam Exp $
include/sodium.h
include/sodium/core.h
include/sodium/crypto_aead_aegis128l.h
include/sodium/crypto_aead_aegis256.h
include/sodium/crypto_aead_aes256gcm.h
include/sodium/crypto_aead_chacha20poly1305.h
include/sodium/crypto_aead_xchacha20poly1305.h
@ -25,6 +27,8 @@ include/sodium/crypto_hash_sha256.h
include/sodium/crypto_hash_sha512.h
include/sodium/crypto_kdf.h
include/sodium/crypto_kdf_blake2b.h
include/sodium/crypto_kdf_hkdf_sha256.h
include/sodium/crypto_kdf_hkdf_sha512.h
include/sodium/crypto_kx.h
include/sodium/crypto_onetimeauth.h
include/sodium/crypto_onetimeauth_poly1305.h

View File

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.17 2021/10/26 11:17:15 nia Exp $
$NetBSD: distinfo,v 1.18 2023/09/18 12:38:21 adam Exp $
BLAKE2s (libsodium-1.0.18.tar.gz) = adadb6eb46132f44e17e9b185ab56423430718896a4fc69cb02f0218678da79c
SHA512 (libsodium-1.0.18.tar.gz) = 17e8638e46d8f6f7d024fe5559eccf2b8baf23e143fadd472a7d29d228b186d86686a5e6920385fe2020729119a5f12f989c3a782afbd05a8db4819bb18666ef
Size (libsodium-1.0.18.tar.gz) = 1919817 bytes
BLAKE2s (libsodium-1.0.19.tar.gz) = 72d1a10666e960f2dbb19b8717552b7dc65acf13c4217145cf20792b5ab1a625
SHA512 (libsodium-1.0.19.tar.gz) = 8e9b6d796f6330e00921ce37f1b43545966094250938626ae227deef5fd1279f2fc18b5cd55e23484732a27df4d919cf0d2f07b9c2f1aa0c0ef689e668b0d439
Size (libsodium-1.0.19.tar.gz) = 1945523 bytes