forked from pool/libsodium
50350b1260
* Internal consistency checks failing and primitives used with dangerous/out-of-bounds/invalid parameters used to call abort(3). Now, a custom handler that doesn't return can be set with the set_sodium_misuse() function. It still aborts by default or if the handler ever returns. This is not a replacement for non-fatal, expected runtime errors. This handler will be only called in unexpected situations due to potential bugs in the library or in language bindings. * *_MESSAGEBYTES_MAX macros (and the corresponding _messagebytes_max() symbols) have been added to represent the maximum message size that can be safely handled by a primitive. Language bindings are encouraged to check user inputs against these maximum lengths. * The test suite has been extended to cover more edge cases. * crypto_sign_ed25519_pk_to_curve25519() now rejects points that are not on the curve, or not in the main subgroup. * Further changes have been made to ensure that smart compilers will not optimize out code that we don't want to be optimized. * The sodium_runtime_has_* symbols for CPU features detection are now defined as weak symbols, i.e. they can be replaced with an application-defined implementation. This can be useful to disable AVX* when temperature/power consumption is a concern. * crypto_kx_*() now aborts if called with no non-NULL pointers to store keys to. * SSE2 implementations of crypto_verify_*() have been added. * Passwords can be hashed using a specific algorithm with the new crypto_pwhash_str_alg() function. * Due to popular demand, base64 encoding (sodium_bin2base64()) and decoding (sodium_base642bin()) have been implemented. * A new crypto_secretstream_*() API was added to safely encrypt OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libsodium?expand=0&rev=57
100 lines
2.9 KiB
RPMSpec
100 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package libsodium
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lname libsodium18
|
|
Name: libsodium
|
|
Version: 1.0.14
|
|
Release: 0
|
|
Summary: Portable NaCl-based crypto library
|
|
License: ISC
|
|
Group: System/Libraries
|
|
Url: https://github.com/jedisct1/libsodium
|
|
Source: https://github.com/jedisct1/libsodium/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
BuildRequires: pkgconfig
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
NaCl (pronounced "salt") is a new easy-to-use high-speed software library
|
|
for network communication, encryption, decryption, signatures, etc.NaCl's goal
|
|
is to provide all of the core operations needed to build higher-level cryptographic tools.
|
|
|
|
Sodium is a portable, cross-compilable, installable, packageable fork of NaCl,
|
|
with a compatible API.
|
|
|
|
%package -n %{lname}
|
|
Summary: Portable NaCl-based crypto library
|
|
Group: System/Libraries
|
|
|
|
%description -n %{lname}
|
|
NaCl (pronounced "salt") is a new easy-to-use high-speed software library
|
|
for network communication, encryption, decryption, signatures, etc. NaCl's goal
|
|
is to provide all of the core operations needed to build higher-level cryptographic tools.
|
|
|
|
Sodium is a portable, cross-compilable, installable, packageable fork of NaCl,
|
|
with a compatible API.
|
|
|
|
%package devel
|
|
Summary: Portable NaCl-based crypto library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{lname} = %{version}
|
|
|
|
%description devel
|
|
This package contains all necessary include files and libraries needed
|
|
to compile and develop applications that use libsodium.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
|
|
%if 0%{?suse_version} > 1320
|
|
%ifarch %{ix86} x86_64
|
|
export CFLAGS="%{optflags} -flto"
|
|
export LDFLAGS="-flto"
|
|
%endif
|
|
%endif
|
|
|
|
%configure --disable-static
|
|
make %{?_smp_mflags} V=1
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%check
|
|
make %{?_smp_mflags} check
|
|
|
|
%post -n %{lname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{lname} -p /sbin/ldconfig
|
|
|
|
%files -n %{lname}
|
|
%defattr(0644,root,root,0755)
|
|
%{_libdir}/libsodium.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS ChangeLog LICENSE README.markdown THANKS
|
|
%{_includedir}/sodium.h
|
|
%{_includedir}/sodium
|
|
%{_libdir}/libsodium.so
|
|
%{_libdir}/pkgconfig/libsodium.pc
|
|
|
|
%changelog
|