Blame SPECS/libgcrypt.spec

331546
# This is taken from gnutls.spec
331546
%define srpmhash() %{lua:
331546
local files = rpm.expand("%_specdir/libgcrypt.spec")
331546
for i, p in ipairs(patches) do
331546
   files = files.." "..p
331546
end
331546
for i, p in ipairs(sources) do
331546
   files = files.." "..p
331546
end
331546
local sha256sum = assert(io.popen("cat "..files.."| sha256sum"))
331546
local hash = sha256sum:read("*a")
331546
sha256sum:close()
331546
print(string.sub(hash, 0, 16))
331546
}
331546
331546
331546
Name: libgcrypt
331546
Version: 1.10.0
ff8b6a
Release: 8%{?dist}
331546
URL: https://www.gnupg.org/
331546
Source0: https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-%{version}.tar.bz2
331546
Source1: https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-%{version}.tar.bz2.sig
331546
Source2: wk@g10code.com
331546
Patch1: libgcrypt-1.10.0-disable-brainpool.patch
a7fcec
Patch3: libgcrypt-1.10.0-ppc-hwf.patch
25c200
Patch4: libgcrypt-1.10.0-allow-small-RSA-verify.patch
25c200
Patch5: libgcrypt-1.10.0-allow-short-salt.patch
25c200
Patch6: libgcrypt-1.10.0-fips-getrandom.patch
ff8b6a
# https://dev.gnupg.org/T6127
ff8b6a
# https://lists.gnupg.org/pipermail/gcrypt-devel/2022-September/005379.html
25c200
Patch7: libgcrypt-1.10.0-fips-selftest.patch
ff8b6a
# https://dev.gnupg.org/T6217
ff8b6a
Patch9: libgcrypt-1.10.0-sha3-large.patch
ff8b6a
# https://dev.gnupg.org/T5919
ff8b6a
Patch10: libgcrypt-1.10.0-fips-keygen.patch
ff8b6a
# https://dev.gnupg.org/T6219
ff8b6a
Patch11: libgcrypt-1.10.0-fips-kdf.patch
331546
331546
%global gcrylibdir %{_libdir}
331546
%global gcrysoname libgcrypt.so.20
331546
%global hmackey orboDeJITITejsirpADONivirpUkvarP
331546
331546
# Technically LGPLv2.1+, but Fedora's table doesn't draw a distinction.
331546
# Documentation and some utilities are GPLv2+ licensed. These files
331546
# are in the devel subpackage.
331546
License: LGPLv2+
331546
Summary: A general-purpose cryptography library
331546
BuildRequires: gcc
331546
BuildRequires: gawk, libgpg-error-devel >= 1.11, pkgconfig
331546
# This is needed only when patching the .texi doc.
331546
BuildRequires: texinfo
331546
BuildRequires: autoconf, automake, libtool
331546
BuildRequires: make
331546
331546
%package devel
331546
Summary: Development files for the %{name} package
331546
License: LGPLv2+ and GPLv2+
331546
Requires: libgpg-error-devel
331546
Requires: %{name}%{?_isa} = %{version}-%{release}
331546
Requires: pkgconfig
331546
331546
%description
331546
Libgcrypt is a general purpose crypto library based on the code used
331546
in GNU Privacy Guard.  This is a development version.
331546
331546
%description devel
331546
Libgcrypt is a general purpose crypto library based on the code used
331546
in GNU Privacy Guard.  This package contains files needed to develop
331546
applications using libgcrypt.
331546
331546
%prep
331546
%setup -q
331546
%patch1 -p1
a7fcec
%patch3 -p1
25c200
%patch4 -p1
25c200
%patch5 -p1
25c200
%patch6 -p1
25c200
%patch7 -p1
ff8b6a
%patch9 -p1
ff8b6a
%patch10 -p1
ff8b6a
%patch11 -p1
331546
331546
%build
331546
# This package has a configure test which uses ASMs, but does not link the
331546
# resultant .o files.  As such the ASM test is always successful, even on
331546
# architectures were the ASM is not valid when compiling with LTO.
331546
#
331546
# -ffat-lto-objects is sufficient to address this issue.  It is the default
331546
# for F33, but is expected to only be enabled for packages that need it in
331546
# F34, so we use it here explicitly
331546
%define _lto_cflags -flto=auto -ffat-lto-objects
331546
331546
# should be all algorithms except SM3 and SM4
331546
export DIGESTS='crc gostr3411-94 md4 md5 rmd160 sha1 sha256 sha512 sha3 tiger whirlpool stribog blake2'
331546
export CIPHERS='arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia idea salsa20 gost28147 chacha20'
331546
331546
eval $(sed -n 's/^\(\(NAME\|VERSION_ID\)=.*\)/OS_\1/p' /etc/os-release)
a7fcec
export FIPS_MODULE_NAME="$OS_NAME ${OS_VERSION_ID%%.*} %name"
331546
331546
autoreconf -f
331546
%configure --disable-static \
331546
%ifarch sparc64
331546
     --disable-asm \
331546
%endif
331546
     --enable-noexecstack \
331546
     --enable-hmac-binary-check=%{hmackey} \
331546
     --disable-brainpool \
331546
     --enable-digests="$DIGESTS" \
331546
     --enable-ciphers="$CIPHERS" \
331546
     --with-fips-module-version="$FIPS_MODULE_NAME %{version}-%{srpmhash}"
331546
sed -i -e '/^sys_lib_dlsearch_path_spec/s,/lib /usr/lib,/usr/lib /lib64 /usr/lib64 /lib,g' libtool
331546
%make_build
331546
331546
%check
331546
make check
331546
# try in faked FIPS mode too
331546
LIBGCRYPT_FORCE_FIPS_MODE=1 make check
331546
331546
# Add generation of HMAC checksums of the final stripped binaries 
331546
%define libpath $RPM_BUILD_ROOT%{gcrylibdir}/%{gcrysoname}.?.?
331546
%define __spec_install_post \
331546
    %{?__debug_package:%{__debug_install_post}} \
331546
    %{__arch_install_post} \
331546
    %{__os_install_post} \
331546
    dd if=/dev/zero of=%{libpath}.hmac bs=32 count=1 \
331546
    objcopy --update-section .rodata1=%{libpath}.hmac %{libpath} %{libpath}.empty \
331546
    src/hmac256 --binary %{hmackey} %{libpath}.empty > %{libpath}.hmac \
331546
    objcopy --update-section .rodata1=%{libpath}.hmac %{libpath}.empty %{libpath}.new \
331546
    mv -f %{libpath}.new %{libpath} \
331546
    rm -f %{libpath}.hmac %{libpath}.empty
331546
%{nil}
331546
331546
%install
331546
%make_install
331546
331546
# Change /usr/lib64 back to /usr/lib.  This saves us from having to patch the
331546
# script to "know" that -L/usr/lib64 should be suppressed, and also removes
331546
# a file conflict between 32- and 64-bit versions of this package.
331546
# Also replace my_host with none.
331546
sed -i -e 's,^libdir="/usr/lib.*"$,libdir="/usr/lib",g' $RPM_BUILD_ROOT/%{_bindir}/libgcrypt-config
331546
sed -i -e 's,^my_host=".*"$,my_host="none",g' $RPM_BUILD_ROOT/%{_bindir}/libgcrypt-config
331546
331546
rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir ${RPM_BUILD_ROOT}/%{_libdir}/*.la
331546
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir}
331546
331546
%if "%{gcrylibdir}" != "%{_libdir}"
331546
# Relocate the shared libraries to %{gcrylibdir}.
331546
mkdir -p $RPM_BUILD_ROOT%{gcrylibdir}
331546
for shlib in $RPM_BUILD_ROOT%{_libdir}/*.so* ; do
331546
	if test -L "$shlib" ; then
331546
		rm "$shlib"
331546
	else
331546
		mv "$shlib" $RPM_BUILD_ROOT%{gcrylibdir}/
331546
	fi
331546
done
331546
331546
# Add soname symlink.
331546
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_lib}/
331546
%endif
331546
331546
# Overwrite development symlinks.
331546
pushd $RPM_BUILD_ROOT/%{gcrylibdir}
331546
for shlib in lib*.so.?? ; do
331546
	target=$RPM_BUILD_ROOT/%{_libdir}/`echo "$shlib" | sed -e 's,\.so.*,,g'`.so
331546
%if "%{gcrylibdir}" != "%{_libdir}"
331546
	shlib=%{gcrylibdir}/$shlib
331546
%endif
331546
	ln -sf $shlib $target
331546
done
331546
popd
331546
331546
# Create /etc/gcrypt (hardwired, not dependent on the configure invocation) so
331546
# that _someone_ owns it.
331546
mkdir -p -m 755 $RPM_BUILD_ROOT/etc/gcrypt
331546
331546
%ldconfig_scriptlets
331546
331546
%files
331546
%dir /etc/gcrypt
331546
%{gcrylibdir}/libgcrypt.so.*.*
331546
%{gcrylibdir}/%{gcrysoname}
331546
%license COPYING.LIB
331546
%doc AUTHORS NEWS THANKS
331546
331546
%files devel
331546
%{_bindir}/%{name}-config
331546
%{_bindir}/dumpsexp
331546
%{_bindir}/hmac256
331546
%{_bindir}/mpicalc
331546
%{_includedir}/*
331546
%{_libdir}/*.so
331546
%{_libdir}/pkgconfig/libgcrypt.pc
331546
%{_datadir}/aclocal/*
331546
%{_mandir}/man1/*
331546
331546
%{_infodir}/gcrypt.info*
331546
%license COPYING
331546
331546
%changelog
ff8b6a
* Thu Oct 20 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-8
ff8b6a
- Fix unneeded PBKDF2 passphrase length limitation in FIPS mode
ff8b6a
- Enforce HMAC key lengths in MD API in FIPS mode
ff8b6a
ff8b6a
* Thu Oct 06 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-7
ff8b6a
- Properly enforce KDF limits in FIPS mode (#2130275)
ff8b6a
- Fix memory leak in large digest test (#2129150)
ff8b6a
- Fix function name FIPS service indicator by disabling PK encryption and decryption (#2130275)
ff8b6a
- Skip RSA encryption/decryption selftest in FIPS mode (#2130275)
ff8b6a
ff8b6a
* Tue Sep 27 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-6
ff8b6a
- Fix SHA3 digests with large inputs (#2129150)
ff8b6a
- Fix FIPS RSA PCT (#2128455)
ff8b6a
- Fix RSA FIPS Keygen that non-deterministically fails (#2130275)
ff8b6a
- Get max 32B from getrandom in FIPS mode (#2130275)
ff8b6a
25c200
* Wed Aug 17 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-5
25c200
- Allow signature verification with smaller RSA keys (#2083846)
25c200
- Allow short salt for KDF (#2114870)
25c200
- Reseed the kernel DRBG by using GRND_RANDOM (#2118695)
25c200
- Address FIPS review comments around selftests (#2118695)
25c200
- Disable RSA-OAEP in FIPS mode (#2118695)
25c200
a7fcec
* Fri May 06 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-4
a7fcec
- Backport ppc hardware flags detection (#2051307)
a7fcec
- Disable PKCS#1.5 encryption in FIPS mode (#2061328)
a7fcec
a7fcec
* Thu Mar 31 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-3
a7fcec
- Use correct FIPS module name (#2067123)
a7fcec
331546
* Thu Feb 17 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-2
331546
- Systematic FIPS module name with other FIPS modules
331546
331546
* Wed Feb 02 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-1
331546
- Final release (#2026636)
331546
331546
* Thu Jan 27 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-0.3
331546
- Fix broken soname in the previous beta
331546
331546
* Thu Jan 27 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-0.2
331546
- Provide compat soname symlink as the new release is backward compatible
331546
331546
* Wed Jan 26 2022 Jakub Jelen <jjelen@redhat.com> - 1.10.0-0.1
331546
- New upstream pre-release (#2026636)
331546
- Upstream all patches
331546
- Implement FIPS 140-3 support
331546
331546
* Tue Oct 12 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.3-5
331546
- Allow HW optimizations in FIPS mode (#1990059)
331546
331546
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.9.3-4
331546
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
331546
  Related: rhbz#1991688
331546
331546
* Tue Jun 15 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.3-3
331546
- Fix for CVE-2021-33560 (#1970098)
331546
331546
* Wed Apr 28 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.3-2
331546
- Restore the CET protection (#1954049)
331546
331546
* Tue Apr 20 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.3-1
331546
- New upstream release (#1951325)
331546
331546
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.9.2-4
331546
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
331546
331546
* Thu Apr 15 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.2-3
331546
- Fix issues reported by coverity
331546
331546
* Mon Mar 29 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.2-2
331546
- Fix OCB tag creation on s390x (failing gnupg2 tests)
331546
331546
* Wed Feb 17 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.2-1
331546
- New upstream release (#1929630)
331546
331546
* Fri Jan 29 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.1-1
331546
- New upstream release (#1922156, #1922097)
331546
331546
* Wed Jan 20 2021 Jakub Jelen <jjelen@redhat.com> - 1.9.0-1
331546
- New upstream release (#1917878)
331546
331546
* Tue Nov 24 2020 Jakub Jelen <jjelen@redhat.com> - 1.8.7-1
331546
- new upstream release (#1891123)
331546
331546
* Fri Aug 21 2020 Jeff Law <law@redhat.com> - 1.8.6-4
331546
- Re-enable LTO
331546
331546
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.6-3
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
331546
331546
* Tue Jul 21 2020 Tom Stellard <tstellar@redhat.com> - 1.8.6-2
331546
- Use make macros
331546
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
331546
331546
* Mon Jul 20 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.6-1
331546
- new upstream version 1.8.6
331546
331546
* Wed Jul  1 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-7
331546
- use the hmac256 tool to calculate the library hmac
331546
331546
* Tue Jun 30 2020 Jeff Law <law@redhat.com>
331546
- Disable LTO
331546
331546
* Thu Apr 23 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-6
331546
- Fix regression - missing -ldl linkage
331546
331546
* Wed Apr 22 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-5
331546
- AES performance improvements backported from master branch
331546
331546
* Mon Apr 20 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-4
331546
- FIPS selftest is run directly from the constructor
331546
- FIPS module is implicit with kernel FIPS flag
331546
331546
* Thu Jan 30 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-3
331546
- fix the build on ARMv7
331546
331546
* Thu Jan 23 2020 Tomáš Mráz <tmraz@redhat.com> 1.8.5-2
331546
- Intel CET support by H. J. Lu
331546
331546
* Tue Sep  3 2019 Tomáš Mráz <tmraz@redhat.com> 1.8.5-1
331546
- new upstream version 1.8.5
331546
- add CMAC selftest for FIPS POST
331546
- add continuous FIPS entropy test
331546
- disable non-approved FIPS hashes in the enforced FIPS mode
331546
331546
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-4
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
331546
331546
* Tue Feb 12 2019 Tomáš Mráz <tmraz@redhat.com> 1.8.4-3
331546
- fix the build tests to pass in the FIPS mode
331546
331546
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.4-2
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
331546
331546
* Tue Nov 20 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.4-1
331546
- new upstream version 1.8.4
331546
331546
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-3
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
331546
331546
* Thu Jul 12 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.3-2
331546
- make only_urandom a default in non-presence of configuration file
331546
- run the full FIPS selftests only when the library is called from
331546
  application
331546
331546
* Thu Jun 14 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.3-1
331546
- new upstream version 1.8.3
331546
331546
* Tue Feb  6 2018 Tomáš Mráz <tmraz@redhat.com> 1.8.2-2
331546
- fix behavior when getrandom syscall is not present (#1542453)
331546
331546
* Thu Dec 21 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.2-1
331546
- new upstream version 1.8.2
331546
331546
* Tue Dec  5 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.1-3
331546
- do not try to access() /dev/urandom either if getrandom() works
331546
331546
* Mon Dec  4 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.1-2
331546
- do not try to open /dev/urandom if getrandom() works (#1380866)
331546
331546
* Tue Sep  5 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.1-1
331546
- new upstream version 1.8.1
331546
331546
* Wed Aug 16 2017 Tomáš Mráz <tmraz@redhat.com> 1.8.0-1
331546
- new upstream version 1.8.0
331546
331546
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-3
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
331546
331546
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-2
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
331546
331546
* Thu Jun 29 2017 Tomáš Mráz <tmraz@redhat.com> 1.7.8-1
331546
- new upstream version 1.7.8
331546
331546
* Fri Jun  2 2017 Tomáš Mráz <tmraz@redhat.com> 1.7.7-1
331546
- new upstream version 1.7.7
331546
- GOST is now enabled
331546
331546
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.6-2
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
331546
331546
* Mon Jan 30 2017 Tomáš Mráz <tmraz@redhat.com> 1.7.6-1
331546
- new upstream version 1.7.6
331546
331546
* Fri Dec 16 2016 Tomáš Mráz <tmraz@redhat.com> 1.7.5-1
331546
- new upstream version 1.7.5
331546
331546
* Wed Nov 23 2016 Tomáš Mráz <tmraz@redhat.com> 1.7.3-1
331546
- new upstream version 1.7.3
331546
331546
* Wed Aug 17 2016 Tomáš Mráz <tmraz@redhat.com> 1.6.6-1
331546
- new upstream version with important security fix (CVE-2016-6316)
331546
331546
* Thu Jul 21 2016 Tomáš Mráz <tmraz@redhat.com> 1.6.5-1
331546
- new upstream version fixing low impact issue CVE-2015-7511
331546
331546
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.4-2
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
331546
331546
* Wed Sep  9 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.4-1
331546
- new upstream version
331546
331546
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.3-5
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
331546
331546
* Fri Apr  3 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-4
331546
- deinitialize the RNG after the selftest is run
331546
331546
* Tue Mar 24 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-3
331546
- touch only urandom in the selftest and when /dev/random is
331546
  unavailable for example by SELinux confinement
331546
- fix the RSA selftest key (p q swap) (#1204517)
331546
331546
* Fri Mar 13 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-2
331546
- do not use strict aliasing for bufhelp functions (#1201219)
331546
331546
* Fri Mar  6 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.3-1
331546
- new upstream version
331546
331546
* Wed Feb 25 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.2-4
331546
- do not initialize secure memory during the selftest (#1195850)
331546
331546
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.6.2-3
331546
- Rebuilt for Fedora 23 Change
331546
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
331546
331546
* Wed Jan 14 2015 Tomáš Mráz <tmraz@redhat.com> 1.6.2-2
331546
- fix buildability of programs using gcrypt.h with -ansi (#1182200)
331546
331546
* Mon Dec  8 2014 Tomáš Mráz <tmraz@redhat.com> 1.6.2-1
331546
- new upstream version
331546
331546
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-7
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
331546
331546
* Thu Jul 17 2014 Tom Callaway <spot@fedoraproject.org> - 1.6.1-6
331546
- fix license handling
331546
331546
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.1-5
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
331546
331546
* Tue May 20 2014 Kyle McMartin <kyle@fedoraproject.org> 1.6.1-4
331546
- Re-enable below algos, apply patch from upstream list to make
331546
  that code -fPIC friendly. (rhbz#1069792)
331546
331546
* Mon May 19 2014 Kyle McMartin <kyle@fedoraproject.org> 1.6.1-3
331546
- Disable rijndael, cast5, camellia ARM assembly, as it's non-PIC as
331546
  presently written, which results in .text relocations in the shared
331546
  library. (rhbz#1069792)
331546
331546
* Thu Apr 24 2014 Tomáš Mráz <tmraz@redhat.com> 1.6.1-2
331546
- drop the temporary compat shared library version
331546
- fix the soname version in -use-fipscheck.patch
331546
331546
* Fri Feb 28 2014 Tomáš Mráz <tmraz@redhat.com> 1.6.1-1
331546
- new upstream version breaking ABI compatibility
331546
- this release temporarily includes old compatibility .so
331546
331546
* Tue Jan 21 2014 Tomáš Mráz <tmraz@redhat.com> 1.5.3-3
331546
- add back the nistp521r1 EC curve
331546
- fix a bug in the Whirlpool hash implementation
331546
- speed up the PBKDF2 computation
331546
331546
* Sun Oct 20 2013 Tom Callaway <spot@fedoraproject.org> - 1.5.3-2
331546
- add cleared ECC support
331546
331546
* Fri Jul 26 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.3-1
331546
- new upstream version fixing cache side-channel attack on RSA private keys
331546
331546
* Thu Jun 20 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-3
331546
- silence false error detected by valgrind (#968288)
331546
331546
* Thu Apr 25 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-2
331546
- silence strict aliasing warning in Rijndael
331546
- apply UsrMove
331546
- spec file cleanups
331546
331546
* Fri Apr 19 2013 Tomáš Mráz <tmraz@redhat.com> 1.5.2-1
331546
- new upstream version
331546
331546
* Wed Mar 20 2013 Tomas Mraz <tmraz@redhat.com> 1.5.1-1
331546
- new upstream version
331546
331546
* Tue Mar  5 2013 Tomas Mraz <tmraz@redhat.com> 1.5.0-11
331546
- use poll() instead of select() when gathering randomness (#913773)
331546
331546
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-10
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
331546
331546
* Thu Jan  3 2013 Tomas Mraz <tmraz@redhat.com> 1.5.0-9
331546
- allow empty passphrase in PBKDF2 needed for cryptsetup (=891266)
331546
331546
* Mon Dec  3 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-8
331546
- fix multilib conflict in libgcrypt-config
331546
- fix minor memory leaks and other bugs found by Coverity scan
331546
331546
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-6
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
331546
331546
* Thu Apr  5 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-5
331546
- Correctly rebuild the info documentation
331546
331546
* Wed Apr  4 2012 Tomas Mraz <tmraz@redhat.com> 1.5.0-4
331546
- Add GCRYCTL_SET_ENFORCED_FIPS_FLAG command
331546
331546
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-3
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
331546
331546
* Mon Aug 15 2011 Kalev Lember <kalevlember@gmail.com> 1.5.0-2
331546
- Rebuilt for rpm bug #728707
331546
331546
* Thu Jul 21 2011 Tomas Mraz <tmraz@redhat.com> 1.5.0-1
331546
- new upstream version
331546
331546
* Mon Jun 20 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-4
331546
- Always xor seed from /dev/urandom over /etc/gcrypt/rngseed
331546
331546
* Mon May 30 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-3
331546
- Make the FIPS-186-3 DSA implementation CAVS testable
331546
- add configurable source of RNG seed /etc/gcrypt/rngseed
331546
  in the FIPS mode (#700388)
331546
331546
* Fri Feb 11 2011 Tomas Mraz <tmraz@redhat.com> 1.4.6-1
331546
- new upstream version with minor changes
331546
331546
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-7
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
331546
331546
* Fri Feb  4 2011 Tomas Mraz <tmraz@redhat.com> 1.4.5-6
331546
- fix a bug in the fips-186-3 dsa parameter generation code
331546
331546
* Tue Feb  1 2011 Tomas Mraz <tmraz@redhat.com> 1.4.5-5
331546
- use /dev/urandom for seeding in the FIPS mode
331546
- make the tests to pass in the FIPS mode also fixing
331546
  the FIPS-186-3 DSA keygen
331546
331546
* Sun Feb 14 2010 Rex Dieter <rdieter@fedoraproject.org> 1.4.5-4
331546
- FTBFS libgcrypt-1.4.5-3.fc13: ImplicitDSOLinking (#564973)
331546
331546
* Wed Feb  3 2010 Tomas Mraz <tmraz@redhat.com> 1.4.5-3
331546
- drop the S390 build workaround as it is no longer needed
331546
- additional spec file cleanups for merge review (#226008)
331546
331546
* Mon Dec 21 2009 Tomas Mraz <tmraz@redhat.com> 1.4.5-1
331546
- workaround for build on S390 (#548825)
331546
- spec file cleanups
331546
- upgrade to new minor upstream release
331546
331546
* Tue Aug 11 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-8
331546
- fix warning when installed with --excludedocs (#515961)
331546
331546
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-7
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
331546
331546
* Thu Jun 18 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-6
331546
- and now really apply the padlock patch
331546
331546
* Wed Jun 17 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-5
331546
- fix VIA padlock RNG inline assembly call (#505724)
331546
331546
* Thu Mar  5 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-4
331546
- with the integrity verification check the library needs to link to libdl
331546
  (#488702)
331546
331546
* Tue Mar  3 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-3
331546
- add hmac FIPS integrity verification check
331546
331546
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.4-2
331546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
331546
331546
* Fri Jan 30 2009 Tomas Mraz <tmraz@redhat.com> 1.4.4-1
331546
- update to 1.4.4
331546
- do not abort when the fips mode kernel flag is inaccessible
331546
  due to permissions (#470219)
331546
- hobble the library to drop the ECC support
331546
331546
* Mon Oct 20 2008 Dennis Gilmore <dennis@ausil.us> 1.4.3-2
331546
- disable asm on sparc64
331546
331546
* Thu Sep 18 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.3-1
331546
- update to 1.4.3
331546
- own /etc/gcrypt
331546
331546
* Mon Sep 15 2008 Nalin Dahyabhai <nalin@redhat.com>
331546
- invoke make with %%{?_smp_mflags} to build faster on multi-processor
331546
  systems (Steve Grubb)
331546
331546
* Mon Sep  8 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1
331546
- update to 1.4.2
331546
331546
* Tue Apr 29 2008 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1
331546
- update to 1.4.1
331546
- bump libgpgerror-devel requirement to 1.4, matching the requirement enforced
331546
  by the configure script
331546
331546
* Thu Apr  3 2008 Joe Orton <jorton@redhat.com> 1.4.0-3
331546
- add patch from upstream to fix severe performance regression
331546
  in entropy gathering
331546
331546
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.0-2
331546
- Autorebuild for GCC 4.3
331546
331546
* Mon Dec 10 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.0-1
331546
- update to 1.4.0
331546
331546
* Tue Oct 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-6
331546
- use ldconfig to build the soname symlink for packaging along with the
331546
  shared library (#334731)
331546
331546
* Wed Aug 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-5
331546
- add missing gawk buildrequirement
331546
- switch from explicitly specifying the /dev/random RNG to just verifying
331546
  that the non-LGPL ones were disabled by the configure script
331546
331546
* Thu Aug 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-4
331546
- clarify license
331546
- force use of the linux /dev/random RNG, to avoid accidentally falling back
331546
  to others which would affect the license of the resulting library
331546
331546
* Mon Jul 30 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-3
331546
- disable static libraries (part of #249815)
331546
331546
* Fri Jul 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-2
331546
- move libgcrypt shared library to /%%{_lib} (#249815)
331546
331546
* Tue Feb  6 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.4-1
331546
- update to 1.2.4
331546
331546
* Mon Jan 22 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.2.3-2
331546
- make use of install-info more failsafe (Ville Skyttä, #223705)
331546
331546
* Fri Sep  1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.2.3-1
331546
- update to 1.2.3
331546
331546
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-3.1
331546
- rebuild
331546
331546
* Mon Jun 05 2006 Jesse Keating <jkeating@redhat.com> 1.2.2-3
331546
- Added missing buildreq pkgconfig
331546
331546
* Tue May 16 2006 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-2
331546
- remove file conflicts in libgcrypt-config by making the 64-bit version
331546
  think the libraries are in /usr/lib (which is wrong, but which it also
331546
  prunes from the suggest --libs output, so no harm done, hopefully)
331546
331546
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-1.2.1
331546
- bump again for double-long bug on ppc(64)
331546
331546
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.2.2-1.2
331546
- rebuilt for new gcc4.1 snapshot and glibc changes
331546
331546
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
331546
- rebuilt
331546
331546
* Wed Oct  5 2005 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-1
331546
- update to 1.2.2
331546
331546
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-1
331546
- update to 1.2.1
331546
331546
* Fri Jul 30 2004 Florian La Roche <Florian.LaRoche@redhat.de>
331546
- another try to package the symlink
331546
331546
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
331546
- rebuilt
331546
331546
* Sun May  2 2004 Bill Nottingham <notting@redhat.com> - 1.2.0-1
331546
- update to official 1.2.0
331546
331546
* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> - 1.1.94-1
331546
- update to 1.1.94
331546
331546
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
331546
- rebuilt
331546
331546
* Sat Feb 21 2004 Florian La Roche <Florian.LaRoche@redhat.de>
331546
- add symlinks to shared libs at compile time
331546
331546
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
331546
- rebuilt
331546
331546
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
331546
- rebuilt
331546
331546
* Thu Mar 20 2003 Jeff Johnson <jbj@redhat.com> 1.1.12-1
331546
- upgrade to 1.1.12 (beta).
331546
331546
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
331546
- automated rebuild
331546
331546
* Sun May 26 2002 Tim Powers <timp@redhat.com>
331546
- automated rebuild
331546
331546
* Tue May 21 2002 Jeff Johnson <jbj@redhat.com>
331546
- update to 1.1.7
331546
- change license to LGPL.
331546
- include splint annotations patch.
331546
- install info pages.
331546
331546
* Tue Apr  2 2002 Nalin Dahyabhai <nalin@redhat.com> 1.1.6-1
331546
- update to 1.1.6
331546
331546
* Thu Jan 10 2002 Nalin Dahyabhai <nalin@redhat.com> 1.1.5-1
331546
- fix the Source tag so that it's a real URL
331546
331546
* Thu Dec 20 2001 Nalin Dahyabhai <nalin@redhat.com>
331546
- initial package