2017-06-22 19:47:29 +02:00
|
|
|
#
|
|
|
|
# spec file for package libkcapi
|
|
|
|
#
|
2019-12-13 18:13:37 +01:00
|
|
|
# Copyright (c) 2019 SUSE LLC
|
2017-06-22 19:47:29 +02:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-12-13 18:13:37 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2017-06-22 19:47:29 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: libkcapi
|
|
|
|
Version: 0.13.0
|
|
|
|
Release: 0
|
|
|
|
Summary: Linux Kernel Crypto API User Space Interface Library
|
2019-12-13 18:13:37 +01:00
|
|
|
License: GPL-2.0-only
|
2017-06-22 19:47:29 +02:00
|
|
|
Group: Productivity/Security
|
2019-12-13 18:13:37 +01:00
|
|
|
URL: http://www.chronox.de/libkcapi.html
|
2017-06-22 19:47:29 +02:00
|
|
|
#Source: https://github.com/smuellerDD/libkcapi/archive/v0.13.0.zip
|
|
|
|
Source: libkcapi-0.13.0.tar.bz2
|
2017-07-12 17:00:35 +02:00
|
|
|
Patch0: libkcapi-use-external-fipshmac.patch
|
2017-07-08 16:11:16 +02:00
|
|
|
# PATCH-FIX-UPSTREAM rewritten upstream in https://github.com/smuellerDD/libkcapi/commit/0e7b2b0300782
|
|
|
|
Patch1: reproduciblesort.patch
|
|
|
|
# PATCH-FIX-UPSTREAM https://github.com/smuellerDD/libkcapi/pull/12
|
|
|
|
Patch2: reproducibledate.patch
|
2017-06-29 11:56:15 +02:00
|
|
|
BuildRequires: fipscheck
|
2017-07-12 17:00:35 +02:00
|
|
|
BuildRequires: openssl
|
|
|
|
BuildRequires: xmlto
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%description
|
2017-06-28 17:39:33 +02:00
|
|
|
libkcapi exports APIs so that developers need not consider the low-level
|
|
|
|
Netlink interface handling that is used for accesing the Linux kernel crypto
|
|
|
|
API.
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%package -n libkcapi0
|
|
|
|
Summary: Linux Kernel Crypto API User Space Interface Library
|
|
|
|
Group: System/Libraries
|
|
|
|
|
|
|
|
%description -n libkcapi0
|
|
|
|
libkcapi allows user-space to access the Linux kernel crypto API.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Linux Kernel Crypto API User Space Interface Library
|
|
|
|
Group: Development/Languages/C and C++
|
2017-06-28 17:39:33 +02:00
|
|
|
Requires: libkcapi0 = %{version}
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%description devel
|
2017-06-28 17:39:33 +02:00
|
|
|
libkcapi exports APIs so that developers need not consider the low-level
|
|
|
|
Netlink interface handling that is used for accesing the Linux kernel crypto
|
|
|
|
API.
|
|
|
|
|
|
|
|
The library does not implement any cipher algorithms. All consumer requests are
|
|
|
|
sent to the kernel for processing. Results from the kernel crypto API are
|
|
|
|
returned to the consumer via the library API.
|
|
|
|
|
|
|
|
The kernel interface and therefore this library can be used by unprivileged
|
|
|
|
processes.
|
|
|
|
|
|
|
|
This library does not perform any memcpy for processing the cryptographic data!
|
|
|
|
The library uses scatter / gather lists to eliminate the need for moving data
|
|
|
|
around in memory.
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%package tools
|
|
|
|
Summary: Linux Kernel Crypto API User Space Tools
|
2017-06-28 17:39:33 +02:00
|
|
|
Group: Development/Tools/Other
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%description tools
|
|
|
|
libkcapi user space tools to access certain hash algorithms.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2017-06-29 11:56:15 +02:00
|
|
|
%patch0 -p1
|
2017-07-08 16:11:16 +02:00
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p1
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
cd lib
|
2019-12-13 18:13:37 +01:00
|
|
|
export CFLAGS="%optflags"
|
|
|
|
%make_build
|
2017-06-22 19:50:21 +02:00
|
|
|
make man
|
2017-06-22 19:47:29 +02:00
|
|
|
cd ../apps
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
cd lib
|
2017-06-28 17:39:33 +02:00
|
|
|
make install maninstall DESTDIR=%{buildroot} LIBDIR="%{_libdir}" %{?_smp_mflags}
|
2017-06-22 19:47:29 +02:00
|
|
|
cd ../apps
|
|
|
|
make install DESTDIR=%{buildroot} %{?_smp_mflags} BINDIR=/usr/%_lib/libkcapi/
|
|
|
|
|
2017-06-30 16:09:20 +02:00
|
|
|
# Add generation of HMAC checksums of the final fipshmac fipscheck stripped binaries
|
|
|
|
%define __spec_install_post \
|
|
|
|
%{?__debug_package:%{__debug_install_post}} \
|
|
|
|
%{__arch_install_post} \
|
|
|
|
%{__os_install_post} \
|
2017-07-12 17:00:35 +02:00
|
|
|
openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP $RPM_BUILD_ROOT/usr/%_lib/libkcapi/fipscheck |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.fipscheck.hmac \
|
|
|
|
openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP $RPM_BUILD_ROOT/usr/%_lib/libkcapi/fipshmac |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.fipshmac.hmac \
|
|
|
|
openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha1sum |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha1sum.hmac \
|
|
|
|
openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha256sum |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha256sum.hmac \
|
|
|
|
openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha384sum |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha384sum.hmac \
|
|
|
|
openssl sha256 -hmac orboDeJITITejsirpADONivirpUkvarP $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha512sum |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha512sum.hmac \
|
|
|
|
openssl sha512 -hmac FIPS-FTW-RHT2009 $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha1hmac |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha1hmac.hmac \
|
|
|
|
openssl sha512 -hmac FIPS-FTW-RHT2009 $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha256hmac |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha256hmac.hmac \
|
|
|
|
openssl sha512 -hmac FIPS-FTW-RHT2009 $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha384hmac |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha384hmac.hmac \
|
|
|
|
openssl sha512 -hmac FIPS-FTW-RHT2009 $RPM_BUILD_ROOT/usr/%_lib/libkcapi/sha512hmac |sed -e 's/.* //;' > $RPM_BUILD_ROOT/usr/%_lib/libkcapi/.sha512hmac.hmac \
|
2017-06-30 16:09:20 +02:00
|
|
|
%{nil}
|
|
|
|
|
2017-06-22 19:47:29 +02:00
|
|
|
%post -n libkcapi0 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libkcapi0 -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files -n libkcapi0
|
2019-09-27 19:04:51 +02:00
|
|
|
%license COPYING
|
|
|
|
%doc CHANGES
|
2017-06-28 17:39:33 +02:00
|
|
|
%{_libdir}/libkcapi.so.0.13.*
|
|
|
|
%{_libdir}/libkcapi.so.0
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/kcapi.h
|
2017-06-22 19:58:21 +02:00
|
|
|
%{_mandir}/man3/*
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%files tools
|
2017-06-28 17:39:33 +02:00
|
|
|
%dir %{_libdir}/libkcapi
|
|
|
|
%{_libdir}/libkcapi/*
|
|
|
|
%{_libdir}/libkcapi/.*hmac
|
2017-06-22 19:47:29 +02:00
|
|
|
|
|
|
|
%changelog
|