Accepting request 532674 from devel:libraries:c_c++
1 OBS-URL: https://build.opensuse.org/request/show/532674 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libsodium?expand=0&rev=21
This commit is contained in:
commit
4bb5f52f7f
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3cfc84d097fdc891b40d291f2ac2c3f99f71a87e36b20cc755c6fa0e97a77ee7
|
|
||||||
size 1876526
|
|
3
libsodium-1.0.15.tar.gz
Normal file
3
libsodium-1.0.15.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fb6a9e879a2f674592e4328c5d9f79f082405ee4bb05cb6e679b90afe9e178f4
|
||||||
|
size 1866057
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 8 15:50:50 UTC 2017 - ilya@ilya.pp.ua
|
||||||
|
|
||||||
|
- Refresh spec-file.
|
||||||
|
- Update to 1.0.15.
|
||||||
|
* Release notes: https://github.com/jedisct1/libsodium/releases/tag/1.0.15
|
||||||
|
* The default password hashing algorithm is now Argon2id.
|
||||||
|
* The pwhash_str_verify() function can still verify Argon2i hashes without any changes,
|
||||||
|
and pwhash() can still compute Argon2i hashes as well.
|
||||||
|
* The aes128ctr primitive was removed. It was slow, non-standard, not authenticated,
|
||||||
|
and didn't seem to be used by any opensource project.
|
||||||
|
* Argon2id required at least 3 passes like Argon2i, despite a minimum of 1
|
||||||
|
as defined by the OPSLIMIT_MIN constant. This has been fixed.
|
||||||
|
* The secretstream construction was slightly changed to be consistent with forthcoming variants.
|
||||||
|
* The Javascript and Webassembly versions have been merged, and the module now returns
|
||||||
|
a .ready promise that will resolve after the Webassembly code is loaded and compiled.
|
||||||
|
* Note that due to these incompatible changes, the library version major was bumped up.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 28 19:54:43 UTC 2017 - idonmez@suse.com
|
Thu Sep 28 19:54:43 UTC 2017 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -12,13 +12,12 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%define lname libsodium23
|
||||||
%define lname libsodium18
|
|
||||||
Name: libsodium
|
Name: libsodium
|
||||||
Version: 1.0.14
|
Version: 1.0.15
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Portable NaCl-based crypto library
|
Summary: Portable NaCl-based crypto library
|
||||||
License: ISC
|
License: ISC
|
||||||
@ -26,7 +25,6 @@ Group: System/Libraries
|
|||||||
Url: https://github.com/jedisct1/libsodium
|
Url: https://github.com/jedisct1/libsodium
|
||||||
Source: https://github.com/jedisct1/libsodium/releases/download/%{version}/%{name}-%{version}.tar.gz
|
Source: https://github.com/jedisct1/libsodium/releases/download/%{version}/%{name}-%{version}.tar.gz
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
NaCl (pronounced "salt") is a new easy-to-use high-speed software library
|
NaCl (pronounced "salt") is a new easy-to-use high-speed software library
|
||||||
@ -86,14 +84,14 @@ make %{?_smp_mflags} check
|
|||||||
|
|
||||||
%files -n %{lname}
|
%files -n %{lname}
|
||||||
%defattr(0644,root,root,0755)
|
%defattr(0644,root,root,0755)
|
||||||
%{_libdir}/libsodium.so.*
|
%{_libdir}/%{name}.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS ChangeLog LICENSE README.markdown THANKS
|
%doc AUTHORS ChangeLog LICENSE README.markdown THANKS
|
||||||
%{_includedir}/sodium.h
|
%{_includedir}/sodium.h
|
||||||
%{_includedir}/sodium
|
%{_includedir}/sodium
|
||||||
%{_libdir}/libsodium.so
|
%{_libdir}/%{name}.so
|
||||||
%{_libdir}/pkgconfig/libsodium.pc
|
%{_libdir}/pkgconfig/%{name}.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user