31 lines
982 B
BlitzBasic
31 lines
982 B
BlitzBasic
SUMMARY = "An OpenSSL provider that allows direct interfacing with pkcs11 drivers"
|
|
DESCRIPTION = "\
|
|
This is an Openssl 3.x provider to access Hardware or Software Tokens using \
|
|
the PKCS#11 Cryptographic Token Interface\
|
|
\
|
|
This code targets version 3.1 of the interface but should be backwards \
|
|
compatible to previous versions as well.\
|
|
"
|
|
HOMEPAGE = "https://github.com/latchset/pkcs11-provider"
|
|
SECTION = "libs"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b53b787444a60266932bd270d1cf2d45"
|
|
DEPENDS = "\
|
|
openssl \
|
|
p11-kit \
|
|
"
|
|
|
|
SRC_URI = "${PKCS11_PROVIDER_SRC};branch=${SRCBRANCH}"
|
|
PKCS11_PROVIDER_SRC ?= "git://github.com/nxp-imx/${BPN}.git;branch=main;protocol=https"
|
|
SRCBRANCH = "lf-6.6.52_2.2.2"
|
|
SRCREV = "ededfa20fe2430f33a5e8ea8971af708a2eb65eb"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
# Overwrite default pkcs11 module path
|
|
#EXTRA_OEMESON += "-Ddefault_pkcs11_module=/path/to/mymodule.so"
|
|
|
|
FILES:${PN} += "${libdir}/ossl-modules/pkcs11.so"
|