Wed Mar 15 14:38:13 2023 UTC ()
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.


(adam)
diff -r1.6 -r1.7 pkgsrc/security/libfido2/Makefile
diff -r1.4 -r1.5 pkgsrc/security/libfido2/PLIST
diff -r1.7 -r1.8 pkgsrc/security/libfido2/distinfo

cvs diff -r1.6 -r1.7 pkgsrc/security/libfido2/Makefile (expand / switch to unified diff)

--- pkgsrc/security/libfido2/Makefile 2022/08/05 20:22:05 1.6
+++ pkgsrc/security/libfido2/Makefile 2023/03/15 14:38:13 1.7
@@ -1,28 +1,24 @@ @@ -1,28 +1,24 @@
1# $NetBSD: Makefile,v 1.6 2022/08/05 20:22:05 adam Exp $ 1# $NetBSD: Makefile,v 1.7 2023/03/15 14:38:13 adam Exp $
2 2
3DISTNAME= libfido2-1.11.0 3DISTNAME= libfido2-1.13.0
4CATEGORIES= security devel 4CATEGORIES= security devel
5MASTER_SITES= https://developers.yubico.com/libfido2/Releases/ 5MASTER_SITES= https://developers.yubico.com/libfido2/Releases/
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= https://developers.yubico.com/libfido2/ 8HOMEPAGE= https://developers.yubico.com/libfido2/
9COMMENT= U2F/FIDO/FIDO2 library and tools 9COMMENT= U2F/FIDO/FIDO2 library and tools
10LICENSE= 2-clause-bsd 10LICENSE= 2-clause-bsd
11 11
12USE_CMAKE= yes 
13USE_LANGUAGES= c 12USE_LANGUAGES= c
14USE_TOOLS+= pkg-config 13USE_TOOLS+= pkg-config
15CONFIGURE_DIRS+= build 14CMAKE_ARGS+= -DBUILD_EXAMPLES=OFF
16CMAKE_ARG_PATH= .. 
17CMAKE_ARGS.NetBSD+= -DBASE_LIBRARIES:STRING=usbhid 15CMAKE_ARGS.NetBSD+= -DBASE_LIBRARIES:STRING=usbhid
18TEST_TARGET= test 16TEST_TARGET= test
19 17
20CHECK_PORTABILITY_SKIP+= misc/hooks 18CHECK_PORTABILITY_SKIP+= misc/hooks
21 19
22pre-configure: 20.include "../../devel/cmake/build.mk"
23 ${MKDIR} ${WRKSRC}/build 
24 
25.include "../../devel/libcbor/buildlink3.mk" 21.include "../../devel/libcbor/buildlink3.mk"
26.include "../../devel/zlib/buildlink3.mk" 22.include "../../devel/zlib/buildlink3.mk"
27.include "../../security/openssl/buildlink3.mk" 23.include "../../security/openssl/buildlink3.mk"
28.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/security/libfido2/PLIST (expand / switch to unified diff)

--- pkgsrc/security/libfido2/PLIST 2022/08/05 20:22:05 1.4
+++ pkgsrc/security/libfido2/PLIST 2023/03/15 14:38:13 1.5
@@ -1,54 +1,62 @@ @@ -1,54 +1,62 @@
1@comment $NetBSD: PLIST,v 1.4 2022/08/05 20:22:05 adam Exp $ 1@comment $NetBSD: PLIST,v 1.5 2023/03/15 14:38:13 adam Exp $
2bin/fido2-assert 2bin/fido2-assert
3bin/fido2-cred 3bin/fido2-cred
4bin/fido2-token 4bin/fido2-token
5include/fido.h 5include/fido.h
6include/fido/bio.h 6include/fido/bio.h
7include/fido/config.h 7include/fido/config.h
8include/fido/credman.h 8include/fido/credman.h
9include/fido/eddsa.h 9include/fido/eddsa.h
10include/fido/err.h 10include/fido/err.h
11include/fido/es256.h 11include/fido/es256.h
 12include/fido/es384.h
12include/fido/param.h 13include/fido/param.h
13include/fido/rs256.h 14include/fido/rs256.h
14include/fido/types.h 15include/fido/types.h
15lib/libfido2.a 16lib/libfido2.a
16lib/libfido2.so 17lib/libfido2.so
17lib/libfido2.so.${PKGVERSION} 18lib/libfido2.so.${PKGVERSION}
18lib/libfido2.so.1 19lib/libfido2.so.1
19lib/pkgconfig/libfido2.pc 20lib/pkgconfig/libfido2.pc
20man/man1/fido2-assert.1 21man/man1/fido2-assert.1
21man/man1/fido2-cred.1 22man/man1/fido2-cred.1
22man/man1/fido2-token.1 23man/man1/fido2-token.1
23man/man3/eddsa_pk_free.3 24man/man3/eddsa_pk_free.3
24man/man3/eddsa_pk_from_EVP_PKEY.3 25man/man3/eddsa_pk_from_EVP_PKEY.3
25man/man3/eddsa_pk_from_ptr.3 26man/man3/eddsa_pk_from_ptr.3
26man/man3/eddsa_pk_new.3 27man/man3/eddsa_pk_new.3
27man/man3/eddsa_pk_to_EVP_PKEY.3 28man/man3/eddsa_pk_to_EVP_PKEY.3
28man/man3/es256_pk_free.3 29man/man3/es256_pk_free.3
29man/man3/es256_pk_from_EC_KEY.3 30man/man3/es256_pk_from_EC_KEY.3
30man/man3/es256_pk_from_EVP_PKEY.3 31man/man3/es256_pk_from_EVP_PKEY.3
31man/man3/es256_pk_from_ptr.3 32man/man3/es256_pk_from_ptr.3
32man/man3/es256_pk_new.3 33man/man3/es256_pk_new.3
33man/man3/es256_pk_to_EVP_PKEY.3 34man/man3/es256_pk_to_EVP_PKEY.3
 35man/man3/es384_pk_free.3
 36man/man3/es384_pk_from_EC_KEY.3
 37man/man3/es384_pk_from_EVP_PKEY.3
 38man/man3/es384_pk_from_ptr.3
 39man/man3/es384_pk_new.3
 40man/man3/es384_pk_to_EVP_PKEY.3
34man/man3/fido_assert_allow_cred.3 41man/man3/fido_assert_allow_cred.3
35man/man3/fido_assert_authdata_len.3 42man/man3/fido_assert_authdata_len.3
36man/man3/fido_assert_authdata_ptr.3 43man/man3/fido_assert_authdata_ptr.3
37man/man3/fido_assert_blob_len.3 44man/man3/fido_assert_blob_len.3
38man/man3/fido_assert_blob_ptr.3 45man/man3/fido_assert_blob_ptr.3
39man/man3/fido_assert_clientdata_hash_len.3 46man/man3/fido_assert_clientdata_hash_len.3
40man/man3/fido_assert_clientdata_hash_ptr.3 47man/man3/fido_assert_clientdata_hash_ptr.3
41man/man3/fido_assert_count.3 48man/man3/fido_assert_count.3
 49man/man3/fido_assert_empty_allow_list.3
42man/man3/fido_assert_flags.3 50man/man3/fido_assert_flags.3
43man/man3/fido_assert_free.3 51man/man3/fido_assert_free.3
44man/man3/fido_assert_hmac_secret_len.3 52man/man3/fido_assert_hmac_secret_len.3
45man/man3/fido_assert_hmac_secret_ptr.3 53man/man3/fido_assert_hmac_secret_ptr.3
46man/man3/fido_assert_id_len.3 54man/man3/fido_assert_id_len.3
47man/man3/fido_assert_id_ptr.3 55man/man3/fido_assert_id_ptr.3
48man/man3/fido_assert_largeblob_key_len.3 56man/man3/fido_assert_largeblob_key_len.3
49man/man3/fido_assert_largeblob_key_ptr.3 57man/man3/fido_assert_largeblob_key_ptr.3
50man/man3/fido_assert_new.3 58man/man3/fido_assert_new.3
51man/man3/fido_assert_rp_id.3 59man/man3/fido_assert_rp_id.3
52man/man3/fido_assert_set_authdata.3 60man/man3/fido_assert_set_authdata.3
53man/man3/fido_assert_set_authdata_raw.3 61man/man3/fido_assert_set_authdata_raw.3
54man/man3/fido_assert_set_clientdata.3 62man/man3/fido_assert_set_clientdata.3
@@ -91,56 +99,66 @@ man/man3/fido_bio_template_array_free.3 @@ -91,56 +99,66 @@ man/man3/fido_bio_template_array_free.3
91man/man3/fido_bio_template_array_new.3 99man/man3/fido_bio_template_array_new.3
92man/man3/fido_bio_template_free.3 100man/man3/fido_bio_template_free.3
93man/man3/fido_bio_template_id_len.3 101man/man3/fido_bio_template_id_len.3
94man/man3/fido_bio_template_id_ptr.3 102man/man3/fido_bio_template_id_ptr.3
95man/man3/fido_bio_template_name.3 103man/man3/fido_bio_template_name.3
96man/man3/fido_bio_template_new.3 104man/man3/fido_bio_template_new.3
97man/man3/fido_bio_template_set_id.3 105man/man3/fido_bio_template_set_id.3
98man/man3/fido_bio_template_set_name.3 106man/man3/fido_bio_template_set_name.3
99man/man3/fido_cbor_info_aaguid_len.3 107man/man3/fido_cbor_info_aaguid_len.3
100man/man3/fido_cbor_info_aaguid_ptr.3 108man/man3/fido_cbor_info_aaguid_ptr.3
101man/man3/fido_cbor_info_algorithm_cose.3 109man/man3/fido_cbor_info_algorithm_cose.3
102man/man3/fido_cbor_info_algorithm_count.3 110man/man3/fido_cbor_info_algorithm_count.3
103man/man3/fido_cbor_info_algorithm_type.3 111man/man3/fido_cbor_info_algorithm_type.3
 112man/man3/fido_cbor_info_certs_len.3
 113man/man3/fido_cbor_info_certs_name_ptr.3
 114man/man3/fido_cbor_info_certs_value_ptr.3
104man/man3/fido_cbor_info_extensions_len.3 115man/man3/fido_cbor_info_extensions_len.3
105man/man3/fido_cbor_info_extensions_ptr.3 116man/man3/fido_cbor_info_extensions_ptr.3
106man/man3/fido_cbor_info_free.3 117man/man3/fido_cbor_info_free.3
107man/man3/fido_cbor_info_fwversion.3 118man/man3/fido_cbor_info_fwversion.3
108man/man3/fido_cbor_info_maxcredbloblen.3 119man/man3/fido_cbor_info_maxcredbloblen.3
109man/man3/fido_cbor_info_maxcredcntlst.3 120man/man3/fido_cbor_info_maxcredcntlst.3
110man/man3/fido_cbor_info_maxcredidlen.3 121man/man3/fido_cbor_info_maxcredidlen.3
111man/man3/fido_cbor_info_maxlargeblob.3 122man/man3/fido_cbor_info_maxlargeblob.3
112man/man3/fido_cbor_info_maxmsgsiz.3 123man/man3/fido_cbor_info_maxmsgsiz.3
 124man/man3/fido_cbor_info_maxrpid_minpinlen.3
 125man/man3/fido_cbor_info_minpinlen.3
113man/man3/fido_cbor_info_new.3 126man/man3/fido_cbor_info_new.3
 127man/man3/fido_cbor_info_new_pin_required.3
114man/man3/fido_cbor_info_options_len.3 128man/man3/fido_cbor_info_options_len.3
115man/man3/fido_cbor_info_options_name_ptr.3 129man/man3/fido_cbor_info_options_name_ptr.3
116man/man3/fido_cbor_info_options_value_ptr.3 130man/man3/fido_cbor_info_options_value_ptr.3
117man/man3/fido_cbor_info_protocols_len.3 131man/man3/fido_cbor_info_protocols_len.3
118man/man3/fido_cbor_info_protocols_ptr.3 132man/man3/fido_cbor_info_protocols_ptr.3
 133man/man3/fido_cbor_info_rk_remaining.3
119man/man3/fido_cbor_info_transports_len.3 134man/man3/fido_cbor_info_transports_len.3
120man/man3/fido_cbor_info_transports_ptr.3 135man/man3/fido_cbor_info_transports_ptr.3
 136man/man3/fido_cbor_info_uv_attempts.3
 137man/man3/fido_cbor_info_uv_modality.3
121man/man3/fido_cbor_info_versions_len.3 138man/man3/fido_cbor_info_versions_len.3
122man/man3/fido_cbor_info_versions_ptr.3 139man/man3/fido_cbor_info_versions_ptr.3
123man/man3/fido_cred_aaguid_len.3 140man/man3/fido_cred_aaguid_len.3
124man/man3/fido_cred_aaguid_ptr.3 141man/man3/fido_cred_aaguid_ptr.3
125man/man3/fido_cred_attstmt_len.3 142man/man3/fido_cred_attstmt_len.3
126man/man3/fido_cred_attstmt_ptr.3 143man/man3/fido_cred_attstmt_ptr.3
127man/man3/fido_cred_authdata_len.3 144man/man3/fido_cred_authdata_len.3
128man/man3/fido_cred_authdata_ptr.3 145man/man3/fido_cred_authdata_ptr.3
129man/man3/fido_cred_authdata_raw_len.3 146man/man3/fido_cred_authdata_raw_len.3
130man/man3/fido_cred_authdata_raw_ptr.3 147man/man3/fido_cred_authdata_raw_ptr.3
131man/man3/fido_cred_clientdata_hash_len.3 148man/man3/fido_cred_clientdata_hash_len.3
132man/man3/fido_cred_clientdata_hash_ptr.3 149man/man3/fido_cred_clientdata_hash_ptr.3
133man/man3/fido_cred_display_name.3 150man/man3/fido_cred_display_name.3
 151man/man3/fido_cred_empty_exclude_list.3
134man/man3/fido_cred_exclude.3 152man/man3/fido_cred_exclude.3
135man/man3/fido_cred_flags.3 153man/man3/fido_cred_flags.3
136man/man3/fido_cred_fmt.3 154man/man3/fido_cred_fmt.3
137man/man3/fido_cred_free.3 155man/man3/fido_cred_free.3
138man/man3/fido_cred_id_len.3 156man/man3/fido_cred_id_len.3
139man/man3/fido_cred_id_ptr.3 157man/man3/fido_cred_id_ptr.3
140man/man3/fido_cred_largeblob_key_len.3 158man/man3/fido_cred_largeblob_key_len.3
141man/man3/fido_cred_largeblob_key_ptr.3 159man/man3/fido_cred_largeblob_key_ptr.3
142man/man3/fido_cred_new.3 160man/man3/fido_cred_new.3
143man/man3/fido_cred_pin_minlen.3 161man/man3/fido_cred_pin_minlen.3
144man/man3/fido_cred_prot.3 162man/man3/fido_cred_prot.3
145man/man3/fido_cred_pubkey_len.3 163man/man3/fido_cred_pubkey_len.3
146man/man3/fido_cred_pubkey_ptr.3 164man/man3/fido_cred_pubkey_ptr.3
@@ -262,37 +280,44 @@ man/man3/rs256_pk_from_ptr.3 @@ -262,37 +280,44 @@ man/man3/rs256_pk_from_ptr.3
262man/man3/rs256_pk_new.3 280man/man3/rs256_pk_new.3
263man/man3/rs256_pk_to_EVP_PKEY.3 281man/man3/rs256_pk_to_EVP_PKEY.3
264share/doc/libfido2/html/eddsa_pk_free.html 282share/doc/libfido2/html/eddsa_pk_free.html
265share/doc/libfido2/html/eddsa_pk_from_EVP_PKEY.html 283share/doc/libfido2/html/eddsa_pk_from_EVP_PKEY.html
266share/doc/libfido2/html/eddsa_pk_from_ptr.html 284share/doc/libfido2/html/eddsa_pk_from_ptr.html
267share/doc/libfido2/html/eddsa_pk_new.html 285share/doc/libfido2/html/eddsa_pk_new.html
268share/doc/libfido2/html/eddsa_pk_to_EVP_PKEY.html 286share/doc/libfido2/html/eddsa_pk_to_EVP_PKEY.html
269share/doc/libfido2/html/es256_pk_free.html 287share/doc/libfido2/html/es256_pk_free.html
270share/doc/libfido2/html/es256_pk_from_EC_KEY.html 288share/doc/libfido2/html/es256_pk_from_EC_KEY.html
271share/doc/libfido2/html/es256_pk_from_EVP_PKEY.html 289share/doc/libfido2/html/es256_pk_from_EVP_PKEY.html
272share/doc/libfido2/html/es256_pk_from_ptr.html 290share/doc/libfido2/html/es256_pk_from_ptr.html
273share/doc/libfido2/html/es256_pk_new.html 291share/doc/libfido2/html/es256_pk_new.html
274share/doc/libfido2/html/es256_pk_to_EVP_PKEY.html 292share/doc/libfido2/html/es256_pk_to_EVP_PKEY.html
 293share/doc/libfido2/html/es384_pk_free.html
 294share/doc/libfido2/html/es384_pk_from_EC_KEY.html
 295share/doc/libfido2/html/es384_pk_from_EVP_PKEY.html
 296share/doc/libfido2/html/es384_pk_from_ptr.html
 297share/doc/libfido2/html/es384_pk_new.html
 298share/doc/libfido2/html/es384_pk_to_EVP_PKEY.html
275share/doc/libfido2/html/fido2-assert.html 299share/doc/libfido2/html/fido2-assert.html
276share/doc/libfido2/html/fido2-cred.html 300share/doc/libfido2/html/fido2-cred.html
277share/doc/libfido2/html/fido2-token.html 301share/doc/libfido2/html/fido2-token.html
278share/doc/libfido2/html/fido_assert_allow_cred.html 302share/doc/libfido2/html/fido_assert_allow_cred.html
279share/doc/libfido2/html/fido_assert_authdata_len.html 303share/doc/libfido2/html/fido_assert_authdata_len.html
280share/doc/libfido2/html/fido_assert_authdata_ptr.html 304share/doc/libfido2/html/fido_assert_authdata_ptr.html
281share/doc/libfido2/html/fido_assert_blob_len.html 305share/doc/libfido2/html/fido_assert_blob_len.html
282share/doc/libfido2/html/fido_assert_blob_ptr.html 306share/doc/libfido2/html/fido_assert_blob_ptr.html
283share/doc/libfido2/html/fido_assert_clientdata_hash_len.html 307share/doc/libfido2/html/fido_assert_clientdata_hash_len.html
284share/doc/libfido2/html/fido_assert_clientdata_hash_ptr.html 308share/doc/libfido2/html/fido_assert_clientdata_hash_ptr.html
285share/doc/libfido2/html/fido_assert_count.html 309share/doc/libfido2/html/fido_assert_count.html
 310share/doc/libfido2/html/fido_assert_empty_allow_list.html
286share/doc/libfido2/html/fido_assert_flags.html 311share/doc/libfido2/html/fido_assert_flags.html
287share/doc/libfido2/html/fido_assert_free.html 312share/doc/libfido2/html/fido_assert_free.html
288share/doc/libfido2/html/fido_assert_hmac_secret_len.html 313share/doc/libfido2/html/fido_assert_hmac_secret_len.html
289share/doc/libfido2/html/fido_assert_hmac_secret_ptr.html 314share/doc/libfido2/html/fido_assert_hmac_secret_ptr.html
290share/doc/libfido2/html/fido_assert_id_len.html 315share/doc/libfido2/html/fido_assert_id_len.html
291share/doc/libfido2/html/fido_assert_id_ptr.html 316share/doc/libfido2/html/fido_assert_id_ptr.html
292share/doc/libfido2/html/fido_assert_largeblob_key_len.html 317share/doc/libfido2/html/fido_assert_largeblob_key_len.html
293share/doc/libfido2/html/fido_assert_largeblob_key_ptr.html 318share/doc/libfido2/html/fido_assert_largeblob_key_ptr.html
294share/doc/libfido2/html/fido_assert_new.html 319share/doc/libfido2/html/fido_assert_new.html
295share/doc/libfido2/html/fido_assert_rp_id.html 320share/doc/libfido2/html/fido_assert_rp_id.html
296share/doc/libfido2/html/fido_assert_set_authdata.html 321share/doc/libfido2/html/fido_assert_set_authdata.html
297share/doc/libfido2/html/fido_assert_set_authdata_raw.html 322share/doc/libfido2/html/fido_assert_set_authdata_raw.html
298share/doc/libfido2/html/fido_assert_set_clientdata.html 323share/doc/libfido2/html/fido_assert_set_clientdata.html
@@ -335,56 +360,66 @@ share/doc/libfido2/html/fido_bio_templat @@ -335,56 +360,66 @@ share/doc/libfido2/html/fido_bio_templat
335share/doc/libfido2/html/fido_bio_template_array_new.html 360share/doc/libfido2/html/fido_bio_template_array_new.html
336share/doc/libfido2/html/fido_bio_template_free.html 361share/doc/libfido2/html/fido_bio_template_free.html
337share/doc/libfido2/html/fido_bio_template_id_len.html 362share/doc/libfido2/html/fido_bio_template_id_len.html
338share/doc/libfido2/html/fido_bio_template_id_ptr.html 363share/doc/libfido2/html/fido_bio_template_id_ptr.html
339share/doc/libfido2/html/fido_bio_template_name.html 364share/doc/libfido2/html/fido_bio_template_name.html
340share/doc/libfido2/html/fido_bio_template_new.html 365share/doc/libfido2/html/fido_bio_template_new.html
341share/doc/libfido2/html/fido_bio_template_set_id.html 366share/doc/libfido2/html/fido_bio_template_set_id.html
342share/doc/libfido2/html/fido_bio_template_set_name.html 367share/doc/libfido2/html/fido_bio_template_set_name.html
343share/doc/libfido2/html/fido_cbor_info_aaguid_len.html 368share/doc/libfido2/html/fido_cbor_info_aaguid_len.html
344share/doc/libfido2/html/fido_cbor_info_aaguid_ptr.html 369share/doc/libfido2/html/fido_cbor_info_aaguid_ptr.html
345share/doc/libfido2/html/fido_cbor_info_algorithm_cose.html 370share/doc/libfido2/html/fido_cbor_info_algorithm_cose.html
346share/doc/libfido2/html/fido_cbor_info_algorithm_count.html 371share/doc/libfido2/html/fido_cbor_info_algorithm_count.html
347share/doc/libfido2/html/fido_cbor_info_algorithm_type.html 372share/doc/libfido2/html/fido_cbor_info_algorithm_type.html
 373share/doc/libfido2/html/fido_cbor_info_certs_len.html
 374share/doc/libfido2/html/fido_cbor_info_certs_name_ptr.html
 375share/doc/libfido2/html/fido_cbor_info_certs_value_ptr.html
348share/doc/libfido2/html/fido_cbor_info_extensions_len.html 376share/doc/libfido2/html/fido_cbor_info_extensions_len.html
349share/doc/libfido2/html/fido_cbor_info_extensions_ptr.html 377share/doc/libfido2/html/fido_cbor_info_extensions_ptr.html
350share/doc/libfido2/html/fido_cbor_info_free.html 378share/doc/libfido2/html/fido_cbor_info_free.html
351share/doc/libfido2/html/fido_cbor_info_fwversion.html 379share/doc/libfido2/html/fido_cbor_info_fwversion.html
352share/doc/libfido2/html/fido_cbor_info_maxcredbloblen.html 380share/doc/libfido2/html/fido_cbor_info_maxcredbloblen.html
353share/doc/libfido2/html/fido_cbor_info_maxcredcntlst.html 381share/doc/libfido2/html/fido_cbor_info_maxcredcntlst.html
354share/doc/libfido2/html/fido_cbor_info_maxcredidlen.html 382share/doc/libfido2/html/fido_cbor_info_maxcredidlen.html
355share/doc/libfido2/html/fido_cbor_info_maxlargeblob.html 383share/doc/libfido2/html/fido_cbor_info_maxlargeblob.html
356share/doc/libfido2/html/fido_cbor_info_maxmsgsiz.html 384share/doc/libfido2/html/fido_cbor_info_maxmsgsiz.html
 385share/doc/libfido2/html/fido_cbor_info_maxrpid_minpinlen.html
 386share/doc/libfido2/html/fido_cbor_info_minpinlen.html
357share/doc/libfido2/html/fido_cbor_info_new.html 387share/doc/libfido2/html/fido_cbor_info_new.html
 388share/doc/libfido2/html/fido_cbor_info_new_pin_required.html
358share/doc/libfido2/html/fido_cbor_info_options_len.html 389share/doc/libfido2/html/fido_cbor_info_options_len.html
359share/doc/libfido2/html/fido_cbor_info_options_name_ptr.html 390share/doc/libfido2/html/fido_cbor_info_options_name_ptr.html
360share/doc/libfido2/html/fido_cbor_info_options_value_ptr.html 391share/doc/libfido2/html/fido_cbor_info_options_value_ptr.html
361share/doc/libfido2/html/fido_cbor_info_protocols_len.html 392share/doc/libfido2/html/fido_cbor_info_protocols_len.html
362share/doc/libfido2/html/fido_cbor_info_protocols_ptr.html 393share/doc/libfido2/html/fido_cbor_info_protocols_ptr.html
 394share/doc/libfido2/html/fido_cbor_info_rk_remaining.html
363share/doc/libfido2/html/fido_cbor_info_transports_len.html 395share/doc/libfido2/html/fido_cbor_info_transports_len.html
364share/doc/libfido2/html/fido_cbor_info_transports_ptr.html 396share/doc/libfido2/html/fido_cbor_info_transports_ptr.html
 397share/doc/libfido2/html/fido_cbor_info_uv_attempts.html
 398share/doc/libfido2/html/fido_cbor_info_uv_modality.html
365share/doc/libfido2/html/fido_cbor_info_versions_len.html 399share/doc/libfido2/html/fido_cbor_info_versions_len.html
366share/doc/libfido2/html/fido_cbor_info_versions_ptr.html 400share/doc/libfido2/html/fido_cbor_info_versions_ptr.html
367share/doc/libfido2/html/fido_cred_aaguid_len.html 401share/doc/libfido2/html/fido_cred_aaguid_len.html
368share/doc/libfido2/html/fido_cred_aaguid_ptr.html 402share/doc/libfido2/html/fido_cred_aaguid_ptr.html
369share/doc/libfido2/html/fido_cred_attstmt_len.html 403share/doc/libfido2/html/fido_cred_attstmt_len.html
370share/doc/libfido2/html/fido_cred_attstmt_ptr.html 404share/doc/libfido2/html/fido_cred_attstmt_ptr.html
371share/doc/libfido2/html/fido_cred_authdata_len.html 405share/doc/libfido2/html/fido_cred_authdata_len.html
372share/doc/libfido2/html/fido_cred_authdata_ptr.html 406share/doc/libfido2/html/fido_cred_authdata_ptr.html
373share/doc/libfido2/html/fido_cred_authdata_raw_len.html 407share/doc/libfido2/html/fido_cred_authdata_raw_len.html
374share/doc/libfido2/html/fido_cred_authdata_raw_ptr.html 408share/doc/libfido2/html/fido_cred_authdata_raw_ptr.html
375share/doc/libfido2/html/fido_cred_clientdata_hash_len.html 409share/doc/libfido2/html/fido_cred_clientdata_hash_len.html
376share/doc/libfido2/html/fido_cred_clientdata_hash_ptr.html 410share/doc/libfido2/html/fido_cred_clientdata_hash_ptr.html
377share/doc/libfido2/html/fido_cred_display_name.html 411share/doc/libfido2/html/fido_cred_display_name.html
 412share/doc/libfido2/html/fido_cred_empty_exclude_list.html
378share/doc/libfido2/html/fido_cred_exclude.html 413share/doc/libfido2/html/fido_cred_exclude.html
379share/doc/libfido2/html/fido_cred_flags.html 414share/doc/libfido2/html/fido_cred_flags.html
380share/doc/libfido2/html/fido_cred_fmt.html 415share/doc/libfido2/html/fido_cred_fmt.html
381share/doc/libfido2/html/fido_cred_free.html 416share/doc/libfido2/html/fido_cred_free.html
382share/doc/libfido2/html/fido_cred_id_len.html 417share/doc/libfido2/html/fido_cred_id_len.html
383share/doc/libfido2/html/fido_cred_id_ptr.html 418share/doc/libfido2/html/fido_cred_id_ptr.html
384share/doc/libfido2/html/fido_cred_largeblob_key_len.html 419share/doc/libfido2/html/fido_cred_largeblob_key_len.html
385share/doc/libfido2/html/fido_cred_largeblob_key_ptr.html 420share/doc/libfido2/html/fido_cred_largeblob_key_ptr.html
386share/doc/libfido2/html/fido_cred_new.html 421share/doc/libfido2/html/fido_cred_new.html
387share/doc/libfido2/html/fido_cred_pin_minlen.html 422share/doc/libfido2/html/fido_cred_pin_minlen.html
388share/doc/libfido2/html/fido_cred_prot.html 423share/doc/libfido2/html/fido_cred_prot.html
389share/doc/libfido2/html/fido_cred_pubkey_len.html 424share/doc/libfido2/html/fido_cred_pubkey_len.html
390share/doc/libfido2/html/fido_cred_pubkey_ptr.html 425share/doc/libfido2/html/fido_cred_pubkey_ptr.html

cvs diff -r1.7 -r1.8 pkgsrc/security/libfido2/distinfo (expand / switch to unified diff)

--- pkgsrc/security/libfido2/distinfo 2022/08/05 20:22:05 1.7
+++ pkgsrc/security/libfido2/distinfo 2023/03/15 14:38:13 1.8
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.7 2022/08/05 20:22:05 adam Exp $ 1$NetBSD: distinfo,v 1.8 2023/03/15 14:38:13 adam Exp $
2 2
3BLAKE2s (libfido2-1.11.0.tar.gz) = a558db7853b2d0830d3076bf26799a8ee2b1e32204ed0d26cfa70a89f24bb2e4 3BLAKE2s (libfido2-1.13.0.tar.gz) = bb230689076829bf6d298811c1b4c1d6b6715795747482b4c2b6a8695a0939e3
4SHA512 (libfido2-1.11.0.tar.gz) = d9644453d67b84ec8385dfb63796adb3eae2d7f7cb47fbb1bcf9ca7f5cce400623738cc3317d629c2f0af630424cb2788217f8c7f20d1b52b7369c729052d572 4SHA512 (libfido2-1.13.0.tar.gz) = 90f8452cee4c9cc72241478e697c5c692ccff5ab27752f2f296c3623ee297d1f80a85a359b4d0656c67790084c116aac921894e762eb52d3a79056e5014c03e7
5Size (libfido2-1.11.0.tar.gz) = 624148 bytes 5Size (libfido2-1.13.0.tar.gz) = 652777 bytes