Received: by mail.netbsd.org (Postfix, from userid 605) id C333E84EB7; Wed, 15 Mar 2023 14:38:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ECC4984D26 for ; Wed, 15 Mar 2023 14:38:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 6vSKEEBKuoD9 for ; Wed, 15 Mar 2023 14:38:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DF1F784EC7 for ; Wed, 15 Mar 2023 14:38:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DC216FA90; Wed, 15 Mar 2023 14:38:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167889109310930" MIME-Version: 1.0 Date: Wed, 15 Mar 2023 14:38:13 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/libfido2 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230315143813.DC216FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167889109310930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Mar 15 14:38:13 UTC 2023 Modified Files: pkgsrc/security/libfido2: Makefile PLIST distinfo Log Message: libfido2: updated to 1.13.0 Version 1.13.0 (2023-02-20) ** Support for linking against OpenSSL on Windows. ** New API calls: - fido_assert_empty_allow_list; - fido_cred_empty_exclude_list. ** fido2-token: fix issue when listing large blobs. ** Improved support for different fuzzing engines. Version 1.12.0 (2022-09-22) ** Support for COSE_ES384. ** Support for hidraw(4) on FreeBSD. ** Improved support for FIDO 2.1 authenticators. ** New API calls: - es384_pk_free; - es384_pk_from_EC_KEY; - es384_pk_from_EVP_PKEY; - es384_pk_from_ptr; - es384_pk_new; - es384_pk_to_EVP_PKEY; - fido_cbor_info_certs_len; - fido_cbor_info_certs_name_ptr; - fido_cbor_info_certs_value_ptr; - fido_cbor_info_maxrpid_minpinlen; - fido_cbor_info_minpinlen; - fido_cbor_info_new_pin_required; - fido_cbor_info_rk_remaining; - fido_cbor_info_uv_attempts; - fido_cbor_info_uv_modality. ** Documentation and reliability fixes. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/libfido2/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/libfido2/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/libfido2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167889109310930 Content-Disposition: inline Content-Length: 8421 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/libfido2/Makefile diff -u pkgsrc/security/libfido2/Makefile:1.6 pkgsrc/security/libfido2/Makefile:1.7 --- pkgsrc/security/libfido2/Makefile:1.6 Fri Aug 5 20:22:05 2022 +++ pkgsrc/security/libfido2/Makefile Wed Mar 15 14:38:13 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2022/08/05 20:22:05 adam Exp $ +# $NetBSD: Makefile,v 1.7 2023/03/15 14:38:13 adam Exp $ -DISTNAME= libfido2-1.11.0 +DISTNAME= libfido2-1.13.0 CATEGORIES= security devel MASTER_SITES= https://developers.yubico.com/libfido2/Releases/ @@ -9,19 +9,15 @@ HOMEPAGE= https://developers.yubico.com/ COMMENT= U2F/FIDO/FIDO2 library and tools LICENSE= 2-clause-bsd -USE_CMAKE= yes USE_LANGUAGES= c USE_TOOLS+= pkg-config -CONFIGURE_DIRS+= build -CMAKE_ARG_PATH= .. +CMAKE_ARGS+= -DBUILD_EXAMPLES=OFF CMAKE_ARGS.NetBSD+= -DBASE_LIBRARIES:STRING=usbhid TEST_TARGET= test CHECK_PORTABILITY_SKIP+= misc/hooks -pre-configure: - ${MKDIR} ${WRKSRC}/build - +.include "../../devel/cmake/build.mk" .include "../../devel/libcbor/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" Index: pkgsrc/security/libfido2/PLIST diff -u pkgsrc/security/libfido2/PLIST:1.4 pkgsrc/security/libfido2/PLIST:1.5 --- pkgsrc/security/libfido2/PLIST:1.4 Fri Aug 5 20:22:05 2022 +++ pkgsrc/security/libfido2/PLIST Wed Mar 15 14:38:13 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2022/08/05 20:22:05 adam Exp $ +@comment $NetBSD: PLIST,v 1.5 2023/03/15 14:38:13 adam Exp $ bin/fido2-assert bin/fido2-cred bin/fido2-token @@ -9,6 +9,7 @@ include/fido/credman.h include/fido/eddsa.h include/fido/err.h include/fido/es256.h +include/fido/es384.h include/fido/param.h include/fido/rs256.h include/fido/types.h @@ -31,6 +32,12 @@ man/man3/es256_pk_from_EVP_PKEY.3 man/man3/es256_pk_from_ptr.3 man/man3/es256_pk_new.3 man/man3/es256_pk_to_EVP_PKEY.3 +man/man3/es384_pk_free.3 +man/man3/es384_pk_from_EC_KEY.3 +man/man3/es384_pk_from_EVP_PKEY.3 +man/man3/es384_pk_from_ptr.3 +man/man3/es384_pk_new.3 +man/man3/es384_pk_to_EVP_PKEY.3 man/man3/fido_assert_allow_cred.3 man/man3/fido_assert_authdata_len.3 man/man3/fido_assert_authdata_ptr.3 @@ -39,6 +46,7 @@ man/man3/fido_assert_blob_ptr.3 man/man3/fido_assert_clientdata_hash_len.3 man/man3/fido_assert_clientdata_hash_ptr.3 man/man3/fido_assert_count.3 +man/man3/fido_assert_empty_allow_list.3 man/man3/fido_assert_flags.3 man/man3/fido_assert_free.3 man/man3/fido_assert_hmac_secret_len.3 @@ -101,6 +109,9 @@ man/man3/fido_cbor_info_aaguid_ptr.3 man/man3/fido_cbor_info_algorithm_cose.3 man/man3/fido_cbor_info_algorithm_count.3 man/man3/fido_cbor_info_algorithm_type.3 +man/man3/fido_cbor_info_certs_len.3 +man/man3/fido_cbor_info_certs_name_ptr.3 +man/man3/fido_cbor_info_certs_value_ptr.3 man/man3/fido_cbor_info_extensions_len.3 man/man3/fido_cbor_info_extensions_ptr.3 man/man3/fido_cbor_info_free.3 @@ -110,14 +121,20 @@ man/man3/fido_cbor_info_maxcredcntlst.3 man/man3/fido_cbor_info_maxcredidlen.3 man/man3/fido_cbor_info_maxlargeblob.3 man/man3/fido_cbor_info_maxmsgsiz.3 +man/man3/fido_cbor_info_maxrpid_minpinlen.3 +man/man3/fido_cbor_info_minpinlen.3 man/man3/fido_cbor_info_new.3 +man/man3/fido_cbor_info_new_pin_required.3 man/man3/fido_cbor_info_options_len.3 man/man3/fido_cbor_info_options_name_ptr.3 man/man3/fido_cbor_info_options_value_ptr.3 man/man3/fido_cbor_info_protocols_len.3 man/man3/fido_cbor_info_protocols_ptr.3 +man/man3/fido_cbor_info_rk_remaining.3 man/man3/fido_cbor_info_transports_len.3 man/man3/fido_cbor_info_transports_ptr.3 +man/man3/fido_cbor_info_uv_attempts.3 +man/man3/fido_cbor_info_uv_modality.3 man/man3/fido_cbor_info_versions_len.3 man/man3/fido_cbor_info_versions_ptr.3 man/man3/fido_cred_aaguid_len.3 @@ -131,6 +148,7 @@ man/man3/fido_cred_authdata_raw_ptr.3 man/man3/fido_cred_clientdata_hash_len.3 man/man3/fido_cred_clientdata_hash_ptr.3 man/man3/fido_cred_display_name.3 +man/man3/fido_cred_empty_exclude_list.3 man/man3/fido_cred_exclude.3 man/man3/fido_cred_flags.3 man/man3/fido_cred_fmt.3 @@ -272,6 +290,12 @@ share/doc/libfido2/html/es256_pk_from_EV share/doc/libfido2/html/es256_pk_from_ptr.html share/doc/libfido2/html/es256_pk_new.html share/doc/libfido2/html/es256_pk_to_EVP_PKEY.html +share/doc/libfido2/html/es384_pk_free.html +share/doc/libfido2/html/es384_pk_from_EC_KEY.html +share/doc/libfido2/html/es384_pk_from_EVP_PKEY.html +share/doc/libfido2/html/es384_pk_from_ptr.html +share/doc/libfido2/html/es384_pk_new.html +share/doc/libfido2/html/es384_pk_to_EVP_PKEY.html share/doc/libfido2/html/fido2-assert.html share/doc/libfido2/html/fido2-cred.html share/doc/libfido2/html/fido2-token.html @@ -283,6 +307,7 @@ share/doc/libfido2/html/fido_assert_blob share/doc/libfido2/html/fido_assert_clientdata_hash_len.html share/doc/libfido2/html/fido_assert_clientdata_hash_ptr.html share/doc/libfido2/html/fido_assert_count.html +share/doc/libfido2/html/fido_assert_empty_allow_list.html share/doc/libfido2/html/fido_assert_flags.html share/doc/libfido2/html/fido_assert_free.html share/doc/libfido2/html/fido_assert_hmac_secret_len.html @@ -345,6 +370,9 @@ share/doc/libfido2/html/fido_cbor_info_a share/doc/libfido2/html/fido_cbor_info_algorithm_cose.html share/doc/libfido2/html/fido_cbor_info_algorithm_count.html share/doc/libfido2/html/fido_cbor_info_algorithm_type.html +share/doc/libfido2/html/fido_cbor_info_certs_len.html +share/doc/libfido2/html/fido_cbor_info_certs_name_ptr.html +share/doc/libfido2/html/fido_cbor_info_certs_value_ptr.html share/doc/libfido2/html/fido_cbor_info_extensions_len.html share/doc/libfido2/html/fido_cbor_info_extensions_ptr.html share/doc/libfido2/html/fido_cbor_info_free.html @@ -354,14 +382,20 @@ share/doc/libfido2/html/fido_cbor_info_m share/doc/libfido2/html/fido_cbor_info_maxcredidlen.html share/doc/libfido2/html/fido_cbor_info_maxlargeblob.html share/doc/libfido2/html/fido_cbor_info_maxmsgsiz.html +share/doc/libfido2/html/fido_cbor_info_maxrpid_minpinlen.html +share/doc/libfido2/html/fido_cbor_info_minpinlen.html share/doc/libfido2/html/fido_cbor_info_new.html +share/doc/libfido2/html/fido_cbor_info_new_pin_required.html share/doc/libfido2/html/fido_cbor_info_options_len.html share/doc/libfido2/html/fido_cbor_info_options_name_ptr.html share/doc/libfido2/html/fido_cbor_info_options_value_ptr.html share/doc/libfido2/html/fido_cbor_info_protocols_len.html share/doc/libfido2/html/fido_cbor_info_protocols_ptr.html +share/doc/libfido2/html/fido_cbor_info_rk_remaining.html share/doc/libfido2/html/fido_cbor_info_transports_len.html share/doc/libfido2/html/fido_cbor_info_transports_ptr.html +share/doc/libfido2/html/fido_cbor_info_uv_attempts.html +share/doc/libfido2/html/fido_cbor_info_uv_modality.html share/doc/libfido2/html/fido_cbor_info_versions_len.html share/doc/libfido2/html/fido_cbor_info_versions_ptr.html share/doc/libfido2/html/fido_cred_aaguid_len.html @@ -375,6 +409,7 @@ share/doc/libfido2/html/fido_cred_authda share/doc/libfido2/html/fido_cred_clientdata_hash_len.html share/doc/libfido2/html/fido_cred_clientdata_hash_ptr.html share/doc/libfido2/html/fido_cred_display_name.html +share/doc/libfido2/html/fido_cred_empty_exclude_list.html share/doc/libfido2/html/fido_cred_exclude.html share/doc/libfido2/html/fido_cred_flags.html share/doc/libfido2/html/fido_cred_fmt.html Index: pkgsrc/security/libfido2/distinfo diff -u pkgsrc/security/libfido2/distinfo:1.7 pkgsrc/security/libfido2/distinfo:1.8 --- pkgsrc/security/libfido2/distinfo:1.7 Fri Aug 5 20:22:05 2022 +++ pkgsrc/security/libfido2/distinfo Wed Mar 15 14:38:13 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2022/08/05 20:22:05 adam Exp $ +$NetBSD: distinfo,v 1.8 2023/03/15 14:38:13 adam Exp $ -BLAKE2s (libfido2-1.11.0.tar.gz) = a558db7853b2d0830d3076bf26799a8ee2b1e32204ed0d26cfa70a89f24bb2e4 -SHA512 (libfido2-1.11.0.tar.gz) = d9644453d67b84ec8385dfb63796adb3eae2d7f7cb47fbb1bcf9ca7f5cce400623738cc3317d629c2f0af630424cb2788217f8c7f20d1b52b7369c729052d572 -Size (libfido2-1.11.0.tar.gz) = 624148 bytes +BLAKE2s (libfido2-1.13.0.tar.gz) = bb230689076829bf6d298811c1b4c1d6b6715795747482b4c2b6a8695a0939e3 +SHA512 (libfido2-1.13.0.tar.gz) = 90f8452cee4c9cc72241478e697c5c692ccff5ab27752f2f296c3623ee297d1f80a85a359b4d0656c67790084c116aac921894e762eb52d3a79056e5014c03e7 +Size (libfido2-1.13.0.tar.gz) = 652777 bytes --_----------=_167889109310930--