forked from pool/Botan
Accepting request 981369 from home:dirkmueller:Factory
- update to 2.19.2: * Add support for parallel computation in Argon2 * Add SSSE3 implementation of Argon2 * The OpenSSL provider was incompatible with OpenSSL 3.0. It has been removed * Avoid using reserve in secure_vector appending, which caused a performance problem * Fix TLS::Text_Policy behavior when X25519 is disabled at build time * Fix several warnings from Clang OBS-URL: https://build.opensuse.org/request/show/981369 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/Botan?expand=0&rev=111
This commit is contained in:
parent
9eb8fc307c
commit
a85f6a63e6
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e26e00cfefda64082afdd540d3c537924f645d6a674afed2cd171005deff5560
|
||||
size 6088380
|
@ -1,11 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCAAdFiEEYh2vZBHhhRxM+aLhYhHr8e+637wFAmHrL38ACgkQYhHr8e+6
|
||||
37xo/Af7BKa2CuoqXRLB+vNtyH+410RhJYvgkp98PrjAzXfTOFTGV/RH40PqAUSv
|
||||
pTghqbZ0sjUbrIdCKGymjxEK4x2IFFZCXDUivep3iKVEby3F1yB03D7V/ze2l596
|
||||
EcNh937e1FzEir9XNbtJyW2Dbv5vbToIMBNU3F/lOwD1bPWcc+tHmrMXLyHC+vgV
|
||||
F9zT+0Rz6XHy9FQ3IZvLnVELJkkKuhuCGgjfwXlNaCqMRLjk8fq/bj8/o+pfYkup
|
||||
LKrS1lyV0NbblrzWthdyHI+TAJtSlqLO1Wc0ZVbzmkCPhcpsTEB5s7qYjxOPAQts
|
||||
JG7NvtyiVQZIEwyy0W79iStOeXJ9PA==
|
||||
=O/Uc
|
||||
-----END PGP SIGNATURE-----
|
3
Botan-2.19.2.tar.xz
Normal file
3
Botan-2.19.2.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3af5f17615c6b5cd8b832d269fb6cb4d54ec64f9eb09ddbf1add5093941b4d75
|
||||
size 6063336
|
11
Botan-2.19.2.tar.xz.asc
Normal file
11
Botan-2.19.2.tar.xz.asc
Normal file
@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQEzBAABCAAdFiEEYh2vZBHhhRxM+aLhYhHr8e+637wFAmKafWcACgkQYhHr8e+6
|
||||
37xTmAf+Olfc4Ew36eCAvs/+q06ksrXgc3OG/MZkNEpF8fZbBhq+125mCbx1w7LR
|
||||
vOVnzchb87iucmn+AvrBLfIdaOh3knSGAQ/GOO78WihJBwduC4sfbqSkEcaAa6NH
|
||||
Trgdxo2czeev1ao9DwYSr3VIHE4C2wLbeHAejaO/rYR2aqn74nx8TKbNE01rdhdA
|
||||
0iciZRd5n31yGb8RJ5Wecx75iLgdOabNnGjSDLRkh2XkhPVajx7x97x4umbWzudu
|
||||
BlGPVN2rUp86XYgL0LKsuQJBMeT7svhnkkGHJum7qm7OcOFvGbza2Th1y8AjGir4
|
||||
8fiwT0W91VzSFyLaNo4m05aMgoFxCQ==
|
||||
=arUc
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 8 18:11:38 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 2.19.2:
|
||||
* Add support for parallel computation in Argon2
|
||||
* Add SSSE3 implementation of Argon2
|
||||
* The OpenSSL provider was incompatible with OpenSSL 3.0.
|
||||
It has been removed
|
||||
* Avoid using reserve in secure_vector appending, which caused
|
||||
a performance problem
|
||||
* Fix TLS::Text_Policy behavior when X25519 is disabled
|
||||
at build time
|
||||
* Fix several warnings from Clang
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 23 08:11:39 UTC 2022 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
|
@ -20,20 +20,19 @@
|
||||
%define version_suffix 2-19
|
||||
%define short_version 2
|
||||
Name: Botan
|
||||
Version: 2.19.1
|
||||
Version: 2.19.2
|
||||
Release: 0
|
||||
Summary: A C++ Crypto Library
|
||||
License: BSD-2-Clause
|
||||
Group: Development/Libraries/C and C++
|
||||
URL: https://botan.randombit.net
|
||||
Source0: http://botan.randombit.net/releases/Botan-%{version}.tar.xz
|
||||
Source1: http://botan.randombit.net/releases/Botan-%{version}.tar.xz.asc
|
||||
Source0: https://botan.randombit.net/releases/Botan-%{version}.tar.xz
|
||||
Source1: https://botan.randombit.net/releases/Botan-%{version}.tar.xz.asc
|
||||
Source2: %{name}.keyring
|
||||
Source3: baselibs.conf
|
||||
BuildRequires: bzip2 >= 1.0.2
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libbz2-devel
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: python3
|
||||
BuildRequires: trousers-devel
|
||||
@ -104,7 +103,6 @@ python3 ./configure.py \
|
||||
--with-bzip2 \
|
||||
--with-zlib \
|
||||
--with-lzma \
|
||||
--with-openssl \
|
||||
--with-openmp \
|
||||
--with-sqlite \
|
||||
--with-tpm \
|
||||
|
Loading…
Reference in New Issue
Block a user