Blame SPECS/crypto-policies.spec

bbbf9f
%global git_date 20221215
bbbf9f
%global git_commit 9a189880a1cda3c0bbedab06d405c0a724c0a2f7
8e4f9e
%{?git_commit:%global git_commit_hash %(c=%{git_commit}; echo ${c:0:7})}
8e4f9e
8e4f9e
%global _python_bytecompile_extra 0
8e4f9e
bbbf9f
# RSAMinSize vs RequiredRSASize vs nothing, remove when OpenSSH >= 9.1
bbbf9f
%if 0%{?rhel} == 9
bbbf9f
  # RHEL-9: must be RequiredRSASize in RHEL >= 9.2, Conflicts-enforced,
bbbf9f
  %global MIN_RSA_NAME RequiredRSASize
bbbf9f
%elif 0%{?rhel} == 10
bbbf9f
  # ELN: RequiredRSASize for openssh >= 9.0p1-5, RSAMinSize for >= 9.0p1-2
bbbf9f
  %if v"%(rpm -q openssh | head -n1)" >= v"openssh-9.0p1-5"
bbbf9f
    %global MIN_RSA_NAME RequiredRSASize
bbbf9f
  %elif v"%(rpm -q openssh | head -n1)" >= v"openssh-9.0p1-2"
bbbf9f
    %global MIN_RSA_NAME RSAMinSize
bbbf9f
  %else
bbbf9f
    %global MIN_RSA_NAME none
bbbf9f
  %endif
bbbf9f
%else
bbbf9f
  # some other distro, follow autodetection which checks for openssh >= 9.1
bbbf9f
  %if v"%(rpm -q openssh | head -n1)" >= v"openssh-9.1"
bbbf9f
    %global MIN_RSA_NAME RequiredRSASize
bbbf9f
  %else
bbbf9f
    %global MIN_RSA_NAME none
bbbf9f
  %endif
bbbf9f
%endif
bbbf9f
8e4f9e
Name:           crypto-policies
8e4f9e
Version:        %{git_date}
8b4d33
Release:        1.git%{git_commit_hash}%{?dist}
8e4f9e
Summary:        System-wide crypto policies
8e4f9e
8e4f9e
License:        LGPLv2+
8e4f9e
URL:            https://gitlab.com/redhat-crypto/fedora-crypto-policies
8e4f9e
# For RHEL-9 we use the upstream branch rhel9.
8e4f9e
Source0:        https://gitlab.com/redhat-crypto/fedora-crypto-policies/-/archive/%{git_commit_hash}/%{name}-git%{git_commit_hash}.tar.gz
8e4f9e
8e4f9e
BuildArch: noarch
8e4f9e
BuildRequires: asciidoc
8e4f9e
BuildRequires: libxslt
8e4f9e
BuildRequires: openssl
8e4f9e
BuildRequires: gnutls-utils >= 3.6.0
8e4f9e
BuildRequires: java-1.8.0-openjdk-devel
8e4f9e
BuildRequires: bind
8e4f9e
BuildRequires: perl-interpreter
8e4f9e
BuildRequires: perl-generators
8e4f9e
BuildRequires: perl(File::pushd), perl(File::Temp), perl(File::Copy)
8e4f9e
BuildRequires: perl(File::Which)
8e4f9e
BuildRequires: python3-devel >= 3.6
8e4f9e
BuildRequires: python3-pytest
8e4f9e
BuildRequires: make
8e4f9e
8e4f9e
Conflicts: openssl < 1:3.0.1-10
8e4f9e
Conflicts: nss < 3.44.0
8e4f9e
Conflicts: libreswan < 3.28
bbbf9f
Conflicts: openssh < 8.7p1-24
8e4f9e
Conflicts: gnutls < 3.7.2-3
8e4f9e
8e4f9e
%description
8e4f9e
This package provides pre-built configuration files with
8e4f9e
cryptographic policies for various cryptographic back-ends,
8e4f9e
such as SSL/TLS libraries.
8e4f9e
8e4f9e
%package scripts
8e4f9e
Summary: Tool to switch between crypto policies
8e4f9e
Requires: %{name} = %{version}-%{release}
8e4f9e
Recommends: (grubby if kernel)
8e4f9e
Provides: fips-mode-setup = %{version}-%{release}
8e4f9e
8e4f9e
%description scripts
8e4f9e
This package provides a tool update-crypto-policies, which applies
8e4f9e
the policies provided by the crypto-policies package. These can be
8e4f9e
either the pre-built policies from the base package or custom policies
8e4f9e
defined in simple policy definition files.
8e4f9e
8e4f9e
The package also provides a tool fips-mode-setup, which can be used
8e4f9e
to enable or disable the system FIPS mode.
8e4f9e
8e4f9e
%prep
8e4f9e
%setup -q -n fedora-crypto-policies-%{git_commit_hash}-%{git_commit}
8e4f9e
%autopatch -p1
8e4f9e
8e4f9e
%build
bbbf9f
sed -i \
bbbf9f
  "s/MIN_RSA_DEFAULT = .*/MIN_RSA_DEFAULT = '%{MIN_RSA_NAME}'/" \
bbbf9f
  python/policygenerators/openssh.py
bbbf9f
grep "MIN_RSA_DEFAULT = '%{MIN_RSA_NAME}'" python/policygenerators/openssh.py
8e4f9e
%make_build
8e4f9e
8e4f9e
%install
8e4f9e
mkdir -p -m 755 %{buildroot}%{_datarootdir}/crypto-policies/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_datarootdir}/crypto-policies/back-ends/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_sysconfdir}/crypto-policies/back-ends/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_sysconfdir}/crypto-policies/state/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_sysconfdir}/crypto-policies/local.d/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_sysconfdir}/crypto-policies/policies/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_sysconfdir}/crypto-policies/policies/modules/
8e4f9e
mkdir -p -m 755 %{buildroot}%{_bindir}
8e4f9e
8e4f9e
make DESTDIR=%{buildroot} DIR=%{_datarootdir}/crypto-policies MANDIR=%{_mandir} %{?_smp_mflags} install
8e4f9e
install -p -m 644 default-config %{buildroot}%{_sysconfdir}/crypto-policies/config
8e4f9e
touch %{buildroot}%{_sysconfdir}/crypto-policies/state/current
8e4f9e
touch %{buildroot}%{_sysconfdir}/crypto-policies/state/CURRENT.pol
8e4f9e
8e4f9e
# Drop pre-generated EMPTY policy, we do not need to ship it
8e4f9e
rm -rf %{buildroot}%{_datarootdir}/crypto-policies/EMPTY
8e4f9e
8e4f9e
# Create back-end configs for mounting with read-only /etc/
8e4f9e
for d in LEGACY DEFAULT FUTURE FIPS ; do
8e4f9e
    mkdir -p -m 755 %{buildroot}%{_datarootdir}/crypto-policies/back-ends/$d
8e4f9e
    for f in %{buildroot}%{_datarootdir}/crypto-policies/$d/* ; do
8e4f9e
        ln $f %{buildroot}%{_datarootdir}/crypto-policies/back-ends/$d/$(basename $f .txt).config
8e4f9e
    done
8e4f9e
done
8e4f9e
8e4f9e
for f in %{buildroot}%{_datarootdir}/crypto-policies/DEFAULT/* ; do
8e4f9e
    ln -sf %{_datarootdir}/crypto-policies/DEFAULT/$(basename $f) %{buildroot}%{_sysconfdir}/crypto-policies/back-ends/$(basename $f .txt).config
8e4f9e
done
8e4f9e
8e4f9e
%py_byte_compile %{__python3} %{buildroot}%{_datadir}/crypto-policies/python
8e4f9e
8e4f9e
%check
bbbf9f
# RSAMinSize vs RequiredRSASize vs nothing, remove when OpenSSH >= 9.1
bbbf9f
%if "%{MIN_RSA_NAME}" == "none"
bbbf9f
  sed -i '/RequiredRSASize .*/d' tests/outputs/*.txt
bbbf9f
%elif "%{MIN_RSA_NAME}" == "RSAMinSize"
bbbf9f
  sed -i 's/RequiredRSASize/RSAMinSize/' tests/outputs/*.txt
bbbf9f
%else
bbbf9f
  [ "%{MIN_RSA_NAME}" == "RequiredRSASize" ] || exit 7
bbbf9f
%endif
bbbf9f
make ON_RHEL9=1 test
8e4f9e
8e4f9e
%post -p <lua>
8e4f9e
if not posix.access("%{_sysconfdir}/crypto-policies/config") then
8e4f9e
    local policy = "DEFAULT"
8e4f9e
    local cf = io.open("/proc/sys/crypto/fips_enabled", "r")
8e4f9e
    if cf then
8e4f9e
        if cf:read() == "1" then
8e4f9e
            policy = "FIPS"
8e4f9e
        end
8e4f9e
        cf:close()
8e4f9e
    end
8e4f9e
    cf = io.open("%{_sysconfdir}/crypto-policies/config", "w")
8e4f9e
    if cf then
8e4f9e
        cf:write(policy.."\n")
8e4f9e
        cf:close()
8e4f9e
    end
8e4f9e
    cf = io.open("%{_sysconfdir}/crypto-policies/state/current", "w")
8e4f9e
    if cf then
8e4f9e
        cf:write(policy.."\n")
8e4f9e
        cf:close()
8e4f9e
    end
8e4f9e
    local policypath = "%{_datarootdir}/crypto-policies/"..policy
8e4f9e
    for fn in posix.files(policypath) do
8e4f9e
        if fn ~= "." and fn ~= ".." then
8e4f9e
            local backend = fn:gsub(".*/", ""):gsub("%%..*", "")
8e4f9e
            local cfgfn = "%{_sysconfdir}/crypto-policies/back-ends/"..backend..".config"
8e4f9e
            posix.unlink(cfgfn)
8e4f9e
            posix.symlink(policypath.."/"..fn, cfgfn)
8e4f9e
        end
8e4f9e
    end
8e4f9e
end
8e4f9e
8e4f9e
%posttrans scripts
8e4f9e
%{_bindir}/update-crypto-policies --no-check >/dev/null 2>/dev/null || :
8e4f9e
8e4f9e
8e4f9e
%files
8e4f9e
8e4f9e
%dir %{_sysconfdir}/crypto-policies/
8e4f9e
%dir %{_sysconfdir}/crypto-policies/back-ends/
8e4f9e
%dir %{_sysconfdir}/crypto-policies/state/
8e4f9e
%dir %{_sysconfdir}/crypto-policies/local.d/
8e4f9e
%dir %{_sysconfdir}/crypto-policies/policies/
8e4f9e
%dir %{_sysconfdir}/crypto-policies/policies/modules/
8e4f9e
%dir %{_datarootdir}/crypto-policies/
8e4f9e
8e4f9e
%ghost %config(missingok,noreplace) %{_sysconfdir}/crypto-policies/config
8e4f9e
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/gnutls.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/openssl.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/opensslcnf.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/openssh.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/opensshserver.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/nss.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/bind.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/java.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/javasystem.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/krb5.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/libreswan.config
8e4f9e
%ghost %config(missingok,noreplace) %verify(not mode) %{_sysconfdir}/crypto-policies/back-ends/libssh.config
8e4f9e
# %verify(not mode) comes from the fact
8e4f9e
# these turn into symlinks and back to regular files at will, see bz1898986
8e4f9e
8e4f9e
%ghost %{_sysconfdir}/crypto-policies/state/current
8e4f9e
%ghost %{_sysconfdir}/crypto-policies/state/CURRENT.pol
8e4f9e
8e4f9e
%{_mandir}/man7/crypto-policies.7*
8e4f9e
%{_datarootdir}/crypto-policies/LEGACY
8e4f9e
%{_datarootdir}/crypto-policies/DEFAULT
8e4f9e
%{_datarootdir}/crypto-policies/FUTURE
8e4f9e
%{_datarootdir}/crypto-policies/FIPS
8e4f9e
%{_datarootdir}/crypto-policies/back-ends
8e4f9e
%{_datarootdir}/crypto-policies/default-config
8e4f9e
%{_datarootdir}/crypto-policies/reload-cmds.sh
8e4f9e
%{_datarootdir}/crypto-policies/policies
8e4f9e
8e4f9e
%license COPYING.LESSER
8e4f9e
8e4f9e
%files scripts
8e4f9e
%{_bindir}/update-crypto-policies
8e4f9e
%{_mandir}/man8/update-crypto-policies.8*
8e4f9e
%{_datarootdir}/crypto-policies/python
8e4f9e
8e4f9e
%{_bindir}/fips-mode-setup
8e4f9e
%{_bindir}/fips-finish-install
8e4f9e
%{_mandir}/man8/fips-mode-setup.8*
8e4f9e
%{_mandir}/man8/fips-finish-install.8*
8e4f9e
8e4f9e
%changelog
bbbf9f
* Thu Dec 15 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20221215-1.git9a18988
bbbf9f
- bind: expand the list of disableable algorithms
bbbf9f
bbbf9f
* Mon Oct 03 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20221003-1.git04dee29
bbbf9f
- openssh: rename RSAMinSize option to RequiredRSASize
bbbf9f
8b4d33
* Mon Aug 15 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20220815-1.git0fbe86f
8b4d33
- openssh: add RSAMinSize option following min_rsa_size
8b4d33
8b4d33
* Wed Apr 27 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20220427-1.gitb2323a1
8b4d33
- bind: control ED25519/ED448
8b4d33
8b4d33
* Mon Apr 04 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20220404-1.git845c0c1
8e4f9e
- DEFAULT: drop DNSSEC SHA-1 exception
8b4d33
- openssh: add support for sntrup761x25519-sha512@openssh.com
8e4f9e
8e4f9e
* Wed Feb 23 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20220223-1.git5203b41
8e4f9e
- openssl: allow SHA-1 signatures with rh-allow-sha1-signatures in LEGACY
8e4f9e
- update AD-SUPPORT, move RC4 enctype enabling to AD-SUPPORT-LEGACY
8e4f9e
- fips-mode-setup: catch more inconsistencies, clarify --check
8e4f9e
8e4f9e
* Thu Feb 03 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20220203-1.gitf03e75e
8e4f9e
- gnutls: enable SHAKE, needed for Ed448
8e4f9e
- fips-mode-setup: improve handling FIPS plus subpolicies
8e4f9e
- FIPS: disable SHA-1 HMAC
8e4f9e
- FIPS: disable CBC ciphers except in Kerberos
8e4f9e
8e4f9e
* Tue Feb 01 2022 Alexander Sosedkin <asosedkin@redhat.com> - 20220201-1.git636a91d
8e4f9e
- openssl: revert to SECLEVEL=2 in LEGACY
8e4f9e
- openssl: add newlines at the end of the output
8e4f9e
8e4f9e
* Mon Nov 15 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20211115-1.git70de135
8e4f9e
- OSPP: relax -ECDSA-SHA2-512, -FFDHE-*
8e4f9e
- fips-mode-setup, fips-finish-install: call zipl more often (s390x-specific)
8e4f9e
8e4f9e
* Wed Sep 22 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210922-1.git6fb269b
8e4f9e
- openssl: fix disabling ChaCha20
8e4f9e
- update for pylint 2.11
8e4f9e
8e4f9e
* Tue Sep 14 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210914-1.git97d08ef
8e4f9e
- gnutls: reorder ECDSA-SECPMMMR1-SHANNN together with ECDSA-SHANNN
8e4f9e
- fix several issues with update-crypto-policies --check
8e4f9e
8e4f9e
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 20210707-2.git29f6c0b
8e4f9e
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
8e4f9e
  Related: rhbz#1991688
8e4f9e
8e4f9e
* Wed Jul 07 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210707-1.git29f6c0b
8e4f9e
- gnutls: explicitly enable ECDSA-SECPNNNR1-SHANNN
8e4f9e
- packaging: adapt to the RHEL-9 %check-time testing tools availability
8e4f9e
8e4f9e
* Mon Jun 28 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210628-1.gitdd7d273
8e4f9e
- implement scoped policies, e.g., cipher@SSH = ...
8e4f9e
- implement algorithm globbing, e.g., cipher@SSH = -*-CBC
8e4f9e
- deprecate derived properties:
8e4f9e
  tls_cipher, ssh_cipher, ssh_group, ike_protocol, sha1_in_dnssec
8e4f9e
- deprecate unscoped form of protocol property
8e4f9e
- openssl: set MinProtocol / MaxProtocol separately for TLS and DTLS
8e4f9e
- openssh: use PubkeyAcceptedAlgorithms instead of PubkeyAcceptedKeyTypes
8e4f9e
- libssh: respect ssh_certs
8e4f9e
- restrict FIPS:OSPP further
8e4f9e
- improve Python 3.10 compatibility
8e4f9e
- update documentation
8e4f9e
- expand upstream test coverage
8e4f9e
- FUTURE: disable CBC ciphers for all backends but krb5
8e4f9e
- openssl: LEGACY must have SECLEVEL=1, enabling SHA1
8e4f9e
- disable DHE-DSS in LEGACY
8e4f9e
- bump LEGACY key size requirements from 1023 to 1024
8e4f9e
- add javasystem backend
8e4f9e
- *ssh: condition ecdh-sha2-nistp384 on SECP384R1
8e4f9e
- set %verify(not mode) for backend sometimes-symlinks-sometimes-not
8e4f9e
- gnutls: use allowlisting
8e4f9e
8e4f9e
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 20210218-3.git2246c55
8e4f9e
- Rebuilt for RHEL 9 BETA for openssl 3.0
8e4f9e
  Related: rhbz#1971065
8e4f9e
8e4f9e
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 20210218-2.git2246c55
8e4f9e
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
8e4f9e
8e4f9e
* Thu Feb 18 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210218-1.git2246c55
8e4f9e
- require 2048 bit params in LEGACY
8e4f9e
- require TLSv1.2/DTLSv1.2 in all policies
8e4f9e
- disable DSA
8e4f9e
- disable 3DES in LEGACY
8e4f9e
- drop FFDHE-1024 from LEGACY
8e4f9e
- drop (sub)policies we're not going to offer in RHEL-9
8e4f9e
8e4f9e
* Sat Feb 13 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210213-1.git5c710c0
8e4f9e
- exclude RC4 from LEGACY
8e4f9e
- introduce rc4_md5_in_krb5 to narrow AD_SUPPORT's impact
8e4f9e
- an assortment of small fixes
8e4f9e
8e4f9e
* Wed Jan 27 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210127-2.gitb21c811
8e4f9e
- fix comparison in %post lua scriptlet
8e4f9e
8e4f9e
* Wed Jan 27 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210127-1.gitb21c811
8e4f9e
- don't create /etc/crypto-policies/back-ends/.config in %post
8e4f9e
8e4f9e
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 20210118-2.gitb21c811
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
8e4f9e
8e4f9e
* Mon Jan 18 2021 Alexander Sosedkin <asosedkin@redhat.com> - 20210118-1.gitb21c811
8e4f9e
- output sigalgs required by nss >=3.59 (or 3.60 in Fedora case)
8e4f9e
- bump Python requirement to 3.6
8e4f9e
8e4f9e
* Tue Dec 15 2020 Alexander Sosedkin <asosedkin@redhat.com> - 20201215-1.giteb57e00
8e4f9e
- Kerberos 5: Fix policy generator to account for macs
8e4f9e
8e4f9e
* Tue Dec 08 2020 Alexander Sosedkin <asosedkin@redhat.com> - 20201208-1.git70def9f
8e4f9e
- add AES-192 support (non-TLS scenarios)
8e4f9e
- add documentation of the --check option
8e4f9e
8e4f9e
* Wed Sep 23 2020 Tomáš Mráz <tmraz@redhat.com> - 20200918-1.git85dccc5
8e4f9e
- add RSA-PSK algorithm support
8e4f9e
- add GOST algorithms support for openssl
8e4f9e
- add GOST-ONLY policy and fix GOST subpolicy
8e4f9e
- update-crypto-policies: added --check parameter to perform
8e4f9e
  comparison of actual configuration files with the policy
8e4f9e
8e4f9e
* Thu Aug 13 2020 Tomáš Mráz <tmraz@redhat.com> - 20200813-1.git66d4068
8e4f9e
- libreswan: enable X25519 group
8e4f9e
- libreswan: properly disable FFDH in ECDHE-ONLY subpolicy
8e4f9e
- libreswan: add generation of authby parameter based on sign property
8e4f9e
- libssh: Add diffie-hellman-group14-sha256
8e4f9e
8e4f9e
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20200702-2.gitc40cede
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8e4f9e
8e4f9e
* Mon Jul 13 2020 Tomáš Mráz <tmraz@redhat.com> - 20200702-1.gitc40cede
8e4f9e
- OSPP subpolicy: remove AES-CCM
8e4f9e
- openssl: handle the AES-CCM removal properly
8e4f9e
- openssh/libssh: drop CBC ciphersuites from DEFAULT and FIPS
8e4f9e
- add AD-SUPPORT subpolicy which re-enables RC4 for Kerberos
8e4f9e
- gnutls: disallow X448/ED448 in FIPS policy
8e4f9e
- merge fips-mode-setup package into the scripts subpackage
8e4f9e
8e4f9e
* Thu Jun 25 2020 Tomáš Mráz <tmraz@redhat.com> - 20200625-1.gitb298a9e
8e4f9e
- DEFAULT policy: Drop DH < 2048 bits, TLS 1.0, 1.1, SHA-1
8e4f9e
- make the NEXT policy just an alias for DEFAULT as they are now identical
8e4f9e
- policies: introduce sha1_in_dnssec value for BIND
8e4f9e
- add SHA1 and FEDORA32 policy modules to provide backwards compatibility
8e4f9e
  they can be applied as DEFAULT:SHA1 or DEFAULT:FEDORA32
8e4f9e
- avoid duplicates of list items in resulting policy
8e4f9e
8e4f9e
* Wed Jun 24 2020 Tomáš Mráz <tmraz@redhat.com> - 20200619-1.git781bbd4
8e4f9e
- gnutls: enable DSA signatures in LEGACY
8e4f9e
8e4f9e
* Wed Jun 10 2020 Tomáš Mráz <tmraz@redhat.com> - 20200610-1.git7f9d474
8e4f9e
- openssh server: new format of configuration to be loaded by config include
8e4f9e
- fallback to FIPS policy instead of the default-config in FIPS mode
8e4f9e
- java: Document properly how to override the crypto policy
8e4f9e
- reorder the signature algorithms to follow the order in default openssl list
8e4f9e
8e4f9e
* Tue Jun  9 2020 Tomáš Mráz <tmraz@redhat.com> - 20200527-5.gitb234a47
8e4f9e
- make the post script work in environments where /proc/sys is not available
8e4f9e
8e4f9e
* Fri May 29 2020 Tomáš Mráz <tmraz@redhat.com> - 20200527-4.gitb234a47
8e4f9e
- move the symlink fix-up script to post and fix it
8e4f9e
8e4f9e
* Fri May 29 2020 Tomáš Mráz <tmraz@redhat.com> - 20200527-3.gitb234a47
8e4f9e
- automatically set up FIPS policy in FIPS mode on first install
8e4f9e
8e4f9e
* Thu May 28 2020 Tomáš Mráz <tmraz@redhat.com> - 20200527-2.gitb234a47
8e4f9e
- require the base package from scripts subpackage
8e4f9e
- add Recommends for fips-mode-setup to the scripts subpackage
8e4f9e
8e4f9e
* Wed May 27 2020 Tomáš Mráz <tmraz@redhat.com> - 20200527-1.gitb234a47
8e4f9e
- explicitly enable DHE-DSS in gnutls config if enabled in policy
8e4f9e
- use grubby with --update-kernel=ALL to avoid breaking kernelopts
8e4f9e
- OSPP subpolicy: Allow GCM for SSH protocol
8e4f9e
- openssh: Support newly standardized ECDHE-GSS and DHE-GSS key exchanges
8e4f9e
- if the policy in FIPS mode is not a FIPS policy print a message
8e4f9e
- openssl: Add SignatureAlgorithms support
8e4f9e
8e4f9e
* Thu Mar 12 2020 Tomáš Mráz <tmraz@redhat.com> - 20200312-1.git3ae59d2
8e4f9e
- custom crypto policies: enable completely overriding contents of the list
8e4f9e
  value
8e4f9e
- added ECDHE-ONLY.pmod policy module example
8e4f9e
- openssh: make LEGACY policy to prefer strong public key algorithms
8e4f9e
- openssh: support FIDO/U2F (with the exception of FIPS policy)
8e4f9e
- gnutls: add support for GOST ciphers
8e4f9e
- various python code cleanups
8e4f9e
- update-crypto-policies: dump the current policy to
8e4f9e
  /etc/crypto-policies/state/CURRENT.pol
8e4f9e
8e4f9e
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20191128-5.gitcd267a5
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
8e4f9e
8e4f9e
* Tue Jan 14 2020 Tomáš Mráz <tmraz@redhat.com> - 20191128-4.gitcd267a5
8e4f9e
- the base package must ship the DEFAULT policy config symlinks in case
8e4f9e
  the scripts package is not installed via the weak dependency
8e4f9e
8e4f9e
* Tue Jan 07 2020 Andrew Jeddeloh <ajeddelo@redhat.com> 20191128-3.gitcd267a5
8e4f9e
- split scripts into their own subpackage. See
8e4f9e
  https://github.com/coreos/fedora-coreos-tracker/issues/280 for more details.
8e4f9e
8e4f9e
* Mon Dec 16 2019 Tomáš Mráz <tmraz@redhat.com> - 20191128-2.gitcd267a5
8e4f9e
- move the pre-built .config files to /usr/share/crypto-policies/back-ends
8e4f9e
8e4f9e
* Thu Nov 28 2019 Tomáš Mráz <tmraz@redhat.com> - 20191128-1.gitcd267a5
8e4f9e
- add FIPS subpolicy for OSPP
8e4f9e
- fips-mode-setup: do not reload daemons when changing policy
8e4f9e
- fips-mode-setup: gracefully handle OSTree-based systems
8e4f9e
- gnutls: use new configuration file format
8e4f9e
8e4f9e
* Tue Oct 29 2019 Tomáš Mráz <tmraz@redhat.com> - 20191002-1.gitc93dc99
8e4f9e
- update-crypto-policies: fix handling of list operations in policy modules
8e4f9e
- update-crypto-policies: fix updating of the current policy marker
8e4f9e
- fips-mode-setup: fixes related to containers and non-root execution
8e4f9e
8e4f9e
* Tue Sep 24 2019 Tomáš Mráz <tmraz@redhat.com> - 20190816-4.gitbb9bf99
8e4f9e
- add the /etc/crypto-policies/state directory
8e4f9e
8e4f9e
* Tue Sep 10 2019 Tomáš Mráz <tmraz@redhat.com> - 20190816-3.gitbb9bf99
8e4f9e
- make it possible to use fips-mode-setup --check without dracut
8e4f9e
- add .config symlinks so a crypto policy can be set with read-only
8e4f9e
  /etc by bind-mounting /usr/share/crypto-policies/<policy> to
8e4f9e
  /etc/crypto-policies/back-ends
8e4f9e
8e4f9e
* Mon Aug 19 2019 Tomáš Mráz <tmraz@redhat.com> - 20190816-2.gitbb9bf99
8e4f9e
- run the update-crypto-policies in posttrans
8e4f9e
- the current config should work fine with OpenSSL >= 7.9p1
8e4f9e
- fix the python bytecompilation
8e4f9e
8e4f9e
* Fri Aug 16 2019 Tomáš Mráz <tmraz@redhat.com> - 20190816-1.gitbb9bf99
8e4f9e
- custom crypto policies support
8e4f9e
- openssh: Support new configuration option CASignatureAlgorithms
8e4f9e
- libssh: Add libssh as supported backend
8e4f9e
- multiple fixes in fips-mode-setup, BLS support
8e4f9e
8e4f9e
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20190527-2.git0b3add8
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
8e4f9e
8e4f9e
* Mon May 27 2019 Tomáš Mráz <tmraz@redhat.com> - 20190211-1.git0b3add8
8e4f9e
- libreswan: coalesce proposals to avoid IKE packet fragmentation
8e4f9e
- openssh: add missing curve25519-sha256 to the key exchange list
8e4f9e
- nss: map X25519 to CURVE25519
8e4f9e
8e4f9e
* Thu Apr 25 2019 Tomáš Mráz <tmraz@redhat.com> - 20190211-4.gite3eacfc
8e4f9e
- do not fail in the Java test if the EMPTY policy is not really empty
8e4f9e
8e4f9e
* Thu Mar  7 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 20190211-3.gite3eacfc
8e4f9e
- Split out fips-mode-setup into separate subpackage
8e4f9e
8e4f9e
* Mon Feb 11 2019 Tomáš Mráz <tmraz@redhat.com> - 20190211-2.gite3eacfc
8e4f9e
- add crypto-policies.7 manual page
8e4f9e
- Java: Fix FIPS and FUTURE policy to allow RSA certificates in TLS
8e4f9e
- cleanup duplicate and incorrect information from update-crypto-policies.8
8e4f9e
  manual page
8e4f9e
- update-crypto-policies: Fix endless loop
8e4f9e
- update-crypto-policies: Add warning about the need of system restart
8e4f9e
- FUTURE: Add mistakenly ommitted EDDSA-ED25519 signature algorithm
8e4f9e
- openssh: Add missing SHA2 variants of RSA certificates to the policy
8e4f9e
- return exit code 2 when printing usage from all the tools
8e4f9e
- update-crypto-policies: add --no-reload option for testing
8e4f9e
8e4f9e
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20181122-2.git70769d9
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
8e4f9e
8e4f9e
* Thu Nov 22 2018 Tomáš Mráz <tmraz@redhat.com> - 20181122-1.git70769d9
8e4f9e
- update-crypto-policies: fix error on multiple matches in local.d
8e4f9e
8e4f9e
* Tue Nov 20 2018 Tomáš Mráz <tmraz@redhat.com> - 20181120-1.gitd2b3bc4
8e4f9e
- Print warning when update-crypto-policies --set is used in the FIPS mode
8e4f9e
- Java: Add 3DES and RC4 to legacy algorithms in LEGACY policy
8e4f9e
- OpenSSL: Properly disable non AEAD and AES128 ciphersuites in FUTURE
8e4f9e
- libreswan: Add chacha20_poly1305 to all policies and drop ikev1 from LEGACY
8e4f9e
8e4f9e
* Fri Oct 26 2018 Tomáš Mráz <tmraz@redhat.com> - 20181026-1.gitd42aaa6
8e4f9e
- Fix regression in discovery of additional configuration
8e4f9e
- NSS: add DSA keyword to LEGACY policy
8e4f9e
- GnuTLS: Add 3DES and RC4 to LEGACY policy
8e4f9e
8e4f9e
* Tue Sep 25 2018 Tomáš Mráz <tmraz@redhat.com> - 20180925-1.git71ca85f
8e4f9e
- Use Recommends instead of Requires for grubby
8e4f9e
- Revert setting of HostKeyAlgorithms for ssh client for now
8e4f9e
8e4f9e
* Fri Sep 21 2018 Tomáš Mráz <tmraz@redhat.com> - 20180921-2.git391ed9f
8e4f9e
- Fix requires for grubby
8e4f9e
8e4f9e
* Fri Sep 21 2018 Tomáš Mráz <tmraz@redhat.com> - 20180921-1.git391ed9f
8e4f9e
- OpenSSH: Generate policy for sign algorithms
8e4f9e
- Enable >= 255 bits EC curves in FUTURE policy
8e4f9e
- OpenSSH: Add group1 key exchanges in LEGACY policy
8e4f9e
- NSS: Add SHA224 to hash lists
8e4f9e
- Print warning when update-crypto-policies --set FIPS is used
8e4f9e
- fips-mode-setup: Kernel boot options are now modified with grubby
8e4f9e
8e4f9e
* Thu Aug  2 2018 Tomáš Mráz <tmraz@redhat.com> - 20180802-1.git1626592
8e4f9e
- Introduce NEXT policy
8e4f9e
8e4f9e
* Mon Jul 30 2018 Tomáš Mráz <tmraz@redhat.com> - 20180730-1.git9d9f21d
8e4f9e
- Add OpenSSL configuration file include support
8e4f9e
8e4f9e
* Tue Jul 24 2018 Tomáš Mráz <tmraz@redhat.com> - 20180723-1.gitdb825c0
8e4f9e
- Initial FIPS mode setup support
8e4f9e
- NSS: Add tests for the generated policy
8e4f9e
- Enable TLS-1.3 if available in the respective TLS library
8e4f9e
- Enable SHA1 in certificates in LEGACY policy
8e4f9e
- Disable CAMELLIA
8e4f9e
- libreswan: Multiple bug fixes in policies
8e4f9e
8e4f9e
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20180425-6.git6ad4018
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
8e4f9e
8e4f9e
* Fri May 18 2018 Björn Esser <besser82@fedoraproject.org> - 20180425-5.git6ad4018
8e4f9e
- Fix patch0
8e4f9e
8e4f9e
* Fri May 18 2018 Björn Esser <besser82@fedoraproject.org> - 20180425-4.git6ad4018
8e4f9e
- Remove Requires: systemd
8e4f9e
- Add Patch to silence warnings from reload-cmds
8e4f9e
8e4f9e
* Thu May 17 2018 Björn Esser <besser82@fedoraproject.org> - 20180425-3.git6ad4018
8e4f9e
- Requires: systemd should be added too
8e4f9e
8e4f9e
* Thu May 17 2018 Björn Esser <besser82@fedoraproject.org> - 20180425-2.git6ad4018
8e4f9e
- Add Requires(post): systemd to fix:
8e4f9e
  crypto-policies/reload-cmds.sh: line 1: systemctl: command not found
8e4f9e
8e4f9e
* Wed Apr 25 2018 Tomáš Mráz <tmraz@redhat.com> - 20180425-1.git6ad4018
8e4f9e
- Restart/reload only enabled services
8e4f9e
- Do not enable PSK ciphersuites by default in gnutls and openssl
8e4f9e
- krb5: fix when more than 2048 bits keys are required
8e4f9e
- Fix discovery of additional configurations #1564595
8e4f9e
- Fix incorrect ciphersuite setup for libreswan
8e4f9e
8e4f9e
* Tue Mar  6 2018 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20180306-1.gitaea6928
8e4f9e
- Updated policy to reduce DH parameter size on DEFAULT level, taking into
8e4f9e
  account feedback in #1549242,1#534532.
8e4f9e
- Renamed openssh-server.config to opensshserver.config to reduce conflicts
8e4f9e
  when local.d/ appending is used.
8e4f9e
8e4f9e
* Tue Feb 27 2018 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20180227-1.git0ce1729
8e4f9e
- Updated to include policies for libreswan
8e4f9e
8e4f9e
* Mon Feb 12 2018 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20180112-1.git386e3fe
8e4f9e
- Updated to apply the settings as in StrongCryptoSettings project. The restriction
8e4f9e
  to TLS1.2, is not yet applied as we have no method to impose that in openssl.
8e4f9e
  https://fedoraproject.org/wiki/Changes/StrongCryptoSettings
8e4f9e
8e4f9e
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 20171115-3.git921600e
8e4f9e
- Escape macros in %%changelog
8e4f9e
8e4f9e
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20171115-2.git921600e
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8e4f9e
8e4f9e
* Wed Nov 15 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20171115-1.git921600e
8e4f9e
- Updated openssh policies for new openssh without rc4
8e4f9e
- Removed policies for compat-gnutls28
8e4f9e
8e4f9e
* Wed Aug 23 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20170823-1.git8d18c27
8e4f9e
- Updated gnutls policies for 3.6.0
8e4f9e
8e4f9e
* Wed Aug 16 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20170816-1.git2618a6c
8e4f9e
- Updated to latest upstream
8e4f9e
- Restarts openssh server on policy update
8e4f9e
8e4f9e
* Wed Aug  2 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20170802-1.git9300620
8e4f9e
- Updated to latest upstream
8e4f9e
- Reloads openssh server on policy update
8e4f9e
8e4f9e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20170606-4.git7c32281
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
8e4f9e
8e4f9e
* Tue Jul 25 2017 Igor Gnatenko <ignatenko@redhat.com> - 20170606-3.git7c32281
8e4f9e
- Restore Requires(post)
8e4f9e
8e4f9e
* Mon Jul 24 2017 Troy Dawson <tdawson@redhat.com> 20170606-2.git7c32281
8e4f9e
- perl dependency renamed to perl-interpreter <ppisar@redhat.com>
8e4f9e
- remove useless Requires(post) <ignatenko@redhat.com>
8e4f9e
- Fix path of libdir in generate-policies.pl (#1474442) <tdawson@redhat.com>
8e4f9e
8e4f9e
* Tue Jun  6 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20170606-1.git7c32281
8e4f9e
- Updated to latest upstream
8e4f9e
- Allows gnutls applications in LEGACY mode, to use certificates of 768-bits
8e4f9e
8e4f9e
* Wed May 31 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20170531-1.gitce0df7b
8e4f9e
- Updated to latest upstream
8e4f9e
- Added new kerberos key types
8e4f9e
8e4f9e
* Sat Apr 01 2017 Björn Esser <besser82@fedoraproject.org> - 20170330-3.git55b66da
8e4f9e
- Add Requires for update-crypto-policies in %%post
8e4f9e
8e4f9e
* Fri Mar 31 2017 Petr Å abata <contyk@redhat.com> - 20170330-2.git55b66da
8e4f9e
- update-crypto-policies uses gred and sed, require them
8e4f9e
8e4f9e
* Thu Mar 30 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20170330-1-git55b66da
8e4f9e
- GnuTLS policies include RC4 in legacy mode (#1437213)
8e4f9e
8e4f9e
* Fri Feb 17 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160214-2-gitf3018dd
8e4f9e
- Added openssh file
8e4f9e
8e4f9e
* Tue Feb 14 2017 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160214-1-gitf3018dd
8e4f9e
- Updated policies for BIND to address #1421875
8e4f9e
8e4f9e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20161111-2.gita2363ce
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
8e4f9e
8e4f9e
* Fri Nov 11 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20161111-1-gita2363ce
8e4f9e
- Include OpenJDK documentation.
8e4f9e
8e4f9e
* Tue Sep 27 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160926-2-git08b5501
8e4f9e
- Improved messages on error.
8e4f9e
8e4f9e
* Mon Sep 26 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160926-1-git08b5501
8e4f9e
- Added support for openssh client policy
8e4f9e
8e4f9e
* Wed Sep 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160921-1-git75b9b04
8e4f9e
- Updated with latest upstream.
8e4f9e
8e4f9e
* Thu Jul 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160718-2-gitdb5ca59
8e4f9e
- Added support for administrator overrides in generated policies in local.d
8e4f9e
8e4f9e
* Thu Jul 21 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160718-1-git340cb69
8e4f9e
- Fixed NSS policy generation to include allowed hash algorithms
8e4f9e
8e4f9e
* Wed Jul 20 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160718-1-gitcaa4a8d
8e4f9e
- Updated to new version with auto-generated policies
8e4f9e
8e4f9e
* Mon May 16 2016 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20160516-1-git8f69c35
8e4f9e
- Generate policies for NSS
8e4f9e
- OpenJDK policies were updated for opendjk 8
8e4f9e
8e4f9e
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20151104-2.gitf1cba5f
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8e4f9e
8e4f9e
* Wed Nov  4 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20151104-1-gitcf1cba5f
8e4f9e
- Generate policies for compat-gnutls28 (#1277790)
8e4f9e
8e4f9e
* Fri Oct 23 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20151005-2-gitc8452f8
8e4f9e
- Generated files are put in a %%ghost directive
8e4f9e
8e4f9e
* Mon Oct  5 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20151005-1-gitc8452f8
8e4f9e
- Updated policies from upstream
8e4f9e
- Added support for the generation of libkrb5 policy
8e4f9e
- Added support for the generation of openjdk policy
8e4f9e
8e4f9e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20150518-2.gitffe885e
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8e4f9e
8e4f9e
* Mon May 18 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20150518-1-gitffe885e
8e4f9e
- Updated policies to remove SSL 3.0 and RC4 (#1220679)
8e4f9e
8e4f9e
* Fri Mar  6 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20150305-3-git2eeb03b
8e4f9e
- Added make check
8e4f9e
8e4f9e
* Fri Mar  6 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20150305-2-git44afaa1
8e4f9e
- Removed support for SECLEVEL (#1199274)
8e4f9e
8e4f9e
* Thu Mar  5 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20150305-1-git098a8a6
8e4f9e
- Include AEAD ciphersuites in gnutls (#1198979)
8e4f9e
8e4f9e
* Sun Jan 25 2015 Peter Robinson <pbrobinson@fedoraproject.org> 20150115-3-git9ef7493
8e4f9e
- Bump release so lastest git snapshot is newer NVR
8e4f9e
8e4f9e
* Thu Jan 15 2015 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20150115-2-git9ef7493
8e4f9e
- Updated to newest upstream version.
8e4f9e
- Includes bind policies (#1179925)
8e4f9e
8e4f9e
* Tue Dec 16 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20141124-2-gitd4aa178
8e4f9e
- Corrected typo in gnutls' future policy (#1173886)
8e4f9e
8e4f9e
* Mon Nov 24 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20141124-1-gitd4aa178
8e4f9e
- re-enable SSL 3.0 (until its removal is coordinated with a Fedora change request)
8e4f9e
8e4f9e
* Thu Nov 20 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20141120-1-git9a26a5b
8e4f9e
- disable SSL 3.0 (doesn't work in openssl)
8e4f9e
8e4f9e
* Fri Sep 05 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20140905-1-git4649b7d
8e4f9e
- enforce the acceptable TLS versions in openssl
8e4f9e
8e4f9e
* Wed Aug 27 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20140827-1-git4e06f1d
8e4f9e
- fix issue with RC4 being disabled in DEFAULT settings for openssl
8e4f9e
8e4f9e
* Thu Aug 14 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20140814-1-git80e1e98
8e4f9e
- fix issue in post script run on upgrade (#1130074)
8e4f9e
8e4f9e
* Tue Aug 12 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20140812-1-gitb914bfd
8e4f9e
- updated crypto-policies from repository
8e4f9e
8e4f9e
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 20140708-2-git3a7ae3f
8e4f9e
- fix license handling
8e4f9e
8e4f9e
* Tue Jul 08 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20140708-1-git3a7ae3f
8e4f9e
- updated crypto-policies from repository
8e4f9e
8e4f9e
* Fri Jun 20 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 20140620-1-gitdac1524
8e4f9e
- updated crypto-policies from repository
8e4f9e
- changed versioning
8e4f9e
8e4f9e
* Thu Jun 12 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-7-20140612gita2fa0c6
8e4f9e
- updated crypto-policies from repository
8e4f9e
8e4f9e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-7.20140522gita50bad2
8e4f9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
8e4f9e
8e4f9e
* Thu May 29 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-6-20140522gita50bad2
8e4f9e
- Require(post) coreutils (#1100335).
8e4f9e
8e4f9e
* Tue May 27 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-5-20140522gita50bad2
8e4f9e
- Require coreutils.
8e4f9e
8e4f9e
* Thu May 22 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-4-20140522gita50bad2
8e4f9e
- Install the default configuration file.
8e4f9e
8e4f9e
* Wed May 21 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-3-20140520git81364e4
8e4f9e
- Run update-crypto-policies after installation.
8e4f9e
8e4f9e
* Tue May 20 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-2-20140520git81364e4
8e4f9e
- Updated spec based on comments by Petr Lautrbach.
8e4f9e
8e4f9e
* Mon May 19 2014 Nikos Mavrogiannopoulos <nmav@redhat.com> - 0.9-1-20140519gitf15621a
8e4f9e
- Initial package build
8e4f9e