mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
3b0564196f
License-Update: Copyright year updated to 2026 Changelog: ============= - Added CTAP 2.3 support. - Restrict webauthn.dll search paths; YSA-2026-01. - Support application-managed PIN/UV Auth tokens; gh#806. - Support 64-byte hmac-secret salts when using windows://hello. - Fixed a U2F transaction handling bug when a timeout had been set; gh#917. - Fixed a bug where stdin was closed on fido_nl_new failure; gh#923. - fido2-token: new -G -t mode to to retrieve a PPUAT. - fido2-token: new -I -t mode for deciphering encrypted fields. - fido2-cred -M: support the -t toggle argument - Improved documentation and examples. - Removed tools from SDK packaging on Windows. - New API calls Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
24 lines
885 B
BlitzBasic
24 lines
885 B
BlitzBasic
SUMMARY = "FIDO 2.0 support library"
|
|
DESCRIPTION = "libfido2 provides library functionality and command-line tools to \
|
|
communicate with a FIDO device over USB, and to verify attestation and \
|
|
assertion signatures."
|
|
HOMEPAGE = "https://developers.yubico.com/libfido2"
|
|
LICENSE = "BSD-2-Clause"
|
|
SECTION = "libs/network"
|
|
DEPENDS = "libcbor openssl zlib udev"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=81b68c65611c3a2eaac9e44814284719"
|
|
|
|
SRC_URI = "https://developers.yubico.com/${BPN}/Releases/${BPN}-${PV}.tar.gz"
|
|
SRC_URI[sha256sum] = "c1012c8871d71b65872fd5ff1a9d6b0838a55683a03e85ba97479ce57129c736"
|
|
|
|
inherit cmake pkgconfig manpages
|
|
|
|
PACKAGECONFIG[manpages] = "-DBUILD_MANPAGES:BOOL=ON,-DBUILD_MANPAGES:BOOL=OFF"
|
|
|
|
EXTRA_OECMAKE = "-DUDEV_RULES_DIR=${nonarch_base_libdir}/udev/rules.d -DBUILD_EXAMPLES:BOOL=OFF"
|
|
|
|
PACKAGE_BEFORE_PN = "${PN}-tools"
|
|
|
|
FILES:${PN}-tools = "${bindir}/fido2-*"
|