1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Name: openssl-ibmca
Version: 1.4.0
Release: 0
Summary: An IBMCA OpenSSL dynamic engine
Group: Hardware/Other
License: ASL 2.0
Source: https://github.com/opencryptoki/%{name}/archive/v%{version}.tar.gz
BuildRequires: openssl-devel >= 0.9.8,
libica-devel >= 3.1.1,
autoconf,
automake,
libtool
Requires: openssl >= 0.9.8,
libica >= 3.1.1
ExclusiveArch: s390 s390x
%description
This package contains a shared object OpenSSL dynamic engine which interfaces
to libica, a library enabling the IBM s390/x CPACF crypto instructions.
%prep
%setup -q
%build
%configure
make
%install
%makeinstall
rm -f $RPM_BUILD_ROOT%{_libdir}/libibmca.la
mkdir -p $RPM_BUILD_ROOT%{_libdir}/openssl/engines
mv $RPM_BUILD_ROOT%{_libdir}/lib* $RPM_BUILD_ROOT%{_libdir}/openssl/engines
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%doc README INSTALL src/openssl.cnf.sample
%{_mandir}/man5/*
%{_libdir}/openssl/engines/*
%changelog
* Fri Sep 8 2017 Paulo Vital <pvital@linux.vnet.ibm.com> 1.4.0
- Update new License
- Update Source and URL pointing to GitHub
- Added support to AES-GCM
- Fix bugs/issues
* Fri Feb 17 2017 Paulo Vital <pvital@linux.vnet.ibm.com> 1.3.1
- Support OpenSSL-1.1 and older versions
* Tue Dec 1 2015 Claudio Carvalho <cclaudio@br.ibm.com> 1.3.0
- openssl-ibmca-1.3.0 release
* Mon May 2 2011 Kent Yoder <yoder1@us.ibm.com> 1.2.0
- updates for s390 MSA4 features, engine version 1.2
* Fri Mar 17 2006 Michael A. Halcrow <mhalcrow@us.ibm.com> 1.0.0
- initial version
|