forked from pool/libsodium
Accepting request 233866 from devel:libraries:c_c++
- Update to version 0.5.0 * sodium_mlock()/sodium_munlock() have been introduced. * Added high-level wrappers for crypto_box and crypto_secretbox * Added crypto_pwhash_scryptxsalsa208sha256* functions * Salsa20 and ed25519 implementations now support overlapping inputs/keys/outputs * The poly1305-53 implementation has been replaced with Floodyberry's poly1305-donna32 and poly1305-donna64 implementations * sodium_hex2bin() has been added to complement sodium_bin2hex() * crypto_auth_hmac_sha512() has been implemented * sha256 and sha512 now have a streaming interface * hmacsha256, hmacsha512 and hmacsha512256 now support keys of arbitrary length, and have a streaming interface * crypto_verify_64() has been implemented * CPU features are now detected at runtime - Update to version 0.4.5 * Restore compatibility with OSX <= 10.6 OBS-URL: https://build.opensuse.org/request/show/233866 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libsodium?expand=0&rev=4
This commit is contained in:
commit
43abecc721
3
0.5.0.tar.gz
Normal file
3
0.5.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f18e556447f9baebad6a90cbf23c426fc6211a186cb5ccd721cdf862da5e735e
|
||||||
|
size 1270470
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7ad5202df53eeac0eb29b064ae5d05b65d82b2fc1c082899c9c6a09b0ee1ac32
|
|
||||||
size 540467
|
|
@ -1,7 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 14 12:40:08 UTC 2014 - idonmez@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.5.0
|
||||||
|
* sodium_mlock()/sodium_munlock() have been introduced.
|
||||||
|
* Added high-level wrappers for crypto_box and crypto_secretbox
|
||||||
|
* Added crypto_pwhash_scryptxsalsa208sha256* functions
|
||||||
|
* Salsa20 and ed25519 implementations now support overlapping
|
||||||
|
inputs/keys/outputs
|
||||||
|
* The poly1305-53 implementation has been replaced with Floodyberry's
|
||||||
|
poly1305-donna32 and poly1305-donna64 implementations
|
||||||
|
* sodium_hex2bin() has been added to complement sodium_bin2hex()
|
||||||
|
* crypto_auth_hmac_sha512() has been implemented
|
||||||
|
* sha256 and sha512 now have a streaming interface
|
||||||
|
* hmacsha256, hmacsha512 and hmacsha512256 now support keys of
|
||||||
|
arbitrary length, and have a streaming interface
|
||||||
|
* crypto_verify_64() has been implemented
|
||||||
|
* CPU features are now detected at runtime
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 2 11:44:43 UTC 2014 - i@marguerite.su
|
Fri May 2 11:44:43 UTC 2014 - i@marguerite.su
|
||||||
|
|
||||||
- initial version 0.4.5
|
- Update to version 0.4.5
|
||||||
* Restore compatibility with OSX <= 10.6
|
* Restore compatibility with OSX <= 10.6
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
@ -16,15 +16,18 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define lname libsodium4
|
%define lname libsodium10
|
||||||
Name: libsodium
|
Name: libsodium
|
||||||
Version: 0.4.5
|
Version: 0.5.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Portable NaCl-based crypto library
|
Summary: Portable NaCl-based crypto library
|
||||||
License: ISC
|
License: ISC
|
||||||
Group: System/Libraries
|
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/archive/%{version}.tar.gz
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: libtool
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -60,6 +63,7 @@ to compile and develop applications that use libsodium.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
./autogen.sh
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
@ -77,13 +81,13 @@ make check
|
|||||||
|
|
||||||
%files -n %{lname}
|
%files -n %{lname}
|
||||||
%defattr(0644,root,root,0755)
|
%defattr(0644,root,root,0755)
|
||||||
%{_libdir}/libsodium.so.4*
|
%{_libdir}/libsodium.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}/lib*.so
|
%{_libdir}/libsodium.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user