From c73b6c9ba513fea3e18b696e659049df69931171 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Tue, 11 Nov 2014 11:18:18 -0500 Subject: update to 1.0.0-1 version of the package --- debian/changelog | 10 +- debian/clean | 1 + debian/control | 8 +- debian/copyright | 40 +++--- debian/gbp.conf | 7 -- debian/libsodium10.docs | 3 - debian/libsodium10.install | 1 - debian/libsodium10.symbols | 306 --------------------------------------------- debian/libsodium13.docs | 3 + debian/libsodium13.install | 1 + debian/libsodium13.symbols | 305 ++++++++++++++++++++++++++++++++++++++++++++ 11 files changed, 338 insertions(+), 347 deletions(-) create mode 100644 debian/clean delete mode 100644 debian/gbp.conf delete mode 100644 debian/libsodium10.docs delete mode 100644 debian/libsodium10.install delete mode 100644 debian/libsodium10.symbols create mode 100644 debian/libsodium13.docs create mode 100644 debian/libsodium13.install create mode 100644 debian/libsodium13.symbols (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index ca0f955..2ff77fb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,6 @@ -libsodium (0.6.1-1~leap) unstable; urgency=medium - - * Remove _crypto_stream_salsa20 lines from libsodium10.symbols - - -- Micah Anderson Mon, 11 Aug 2014 14:48:43 -0400 - -libsodium (0.6.1-1) unstable; urgency=medium +libsodium (1.0.0-1) unstable; urgency=low * Initial release. (Closes: #701962: ITP: libsodium -- Library for build higher-level cryptographic tools) - -- Raúl Sánchez Siles Tue, 22 Jul 2014 00:49:38 +0200 + -- Laszlo Boszormenyi (GCS) Wed, 08 Oct 2014 18:54:15 +0000 diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..3f7e4a3 --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +build/config.log diff --git a/debian/control b/debian/control index f06c49a..f3cb17f 100644 --- a/debian/control +++ b/debian/control @@ -4,12 +4,12 @@ Priority: optional Build-Depends: debhelper ( >= 9), pkg-config, dh-autoreconf Maintainer: Laszlo Boszormenyi (GCS) Uploaders: Raúl Sánchez Siles -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 Vcs-Hg: http://trismegisto.no-ip.org/hg/libsodium-debian Vcs-Browser: http://trismegisto.no-ip.org/hg/libsodium-debian Homepage: http://www.libsodium.org/ -Package: libsodium10 +Package: libsodium13 Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Architecture: any @@ -26,7 +26,7 @@ Description: Network communication, cryptography and signaturing library Package: libsodium-dev Section: libdevel -Depends: ${misc:Depends}, libsodium10 (= ${binary:Version}) +Depends: ${misc:Depends}, libsodium13 (= ${binary:Version}) Architecture: any Multi-Arch: same Description: Network communication, cryptography and signaturing library - headers @@ -45,7 +45,7 @@ Description: Network communication, cryptography and signaturing library - heade Package: libsodium-dbg Section: debug Priority: extra -Depends: ${misc:Depends}, libsodium10 (= ${binary:Version}) +Depends: ${misc:Depends}, libsodium13 (= ${binary:Version}) Architecture: any Multi-Arch: same Description: Network communication, cryptography and signaturing library - debug symbols diff --git a/debian/copyright b/debian/copyright index cb3ee84..b4c0ccc 100644 --- a/debian/copyright +++ b/debian/copyright @@ -28,7 +28,7 @@ License: BSD-2-clause Files: src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c Copyright: 2013 Alexander Peslyak -License: BSD +License: BSD-2-clause Files: src/libsodium/crypto_auth/hmacsha256/cp/hmac_hmacsha256.c src/libsodium/crypto_auth/hmacsha512/cp/hmac_hmacsha256.c @@ -99,6 +99,27 @@ License: CC0 You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see +Files: packaging/nuget/package.gsl +Copyright: 2013-2014 Frank Denis +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Files: debian/* Copyright: 2014 Laszlo Boszormenyi (GCS) , 2013-2014 Raúl Sánchez Siles @@ -145,20 +166,3 @@ License: BSD-2-clause LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -License: BSD - Redistribution and use in source and binary forms, with or without - modification, are permitted. - . - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - diff --git a/debian/gbp.conf b/debian/gbp.conf deleted file mode 100644 index ae1dc36..0000000 --- a/debian/gbp.conf +++ /dev/null @@ -1,7 +0,0 @@ -[DEFAULT] -upstream-branch = upstream -debian-branch = master -upstream-tag = upstream/%(version)s -debian-tag = debian/%(version)s -pristine-tar = True -sign-tags = True diff --git a/debian/libsodium10.docs b/debian/libsodium10.docs deleted file mode 100644 index 18afe51..0000000 --- a/debian/libsodium10.docs +++ /dev/null @@ -1,3 +0,0 @@ -AUTHORS -README.markdown -THANKS diff --git a/debian/libsodium10.install b/debian/libsodium10.install deleted file mode 100644 index 86ca402..0000000 --- a/debian/libsodium10.install +++ /dev/null @@ -1 +0,0 @@ -/usr/lib/*/libsodium.so.* diff --git a/debian/libsodium10.symbols b/debian/libsodium10.symbols deleted file mode 100644 index 3777098..0000000 --- a/debian/libsodium10.symbols +++ /dev/null @@ -1,306 +0,0 @@ -libsodium.so.10 libsodium10 #MINVER# - crypto_aead_chacha20poly1305_abytes@Base 0.6.0 - crypto_aead_chacha20poly1305_decrypt@Base 0.6.0 - crypto_aead_chacha20poly1305_encrypt@Base 0.6.0 - crypto_aead_chacha20poly1305_keybytes@Base 0.6.0 - crypto_aead_chacha20poly1305_npubbytes@Base 0.6.0 - crypto_aead_chacha20poly1305_nsecbytes@Base 0.6.0 - crypto_auth@Base 0.6.0 - crypto_auth_bytes@Base 0.6.0 - crypto_auth_hmacsha256@Base 0.6.0 - crypto_auth_hmacsha256_bytes@Base 0.6.0 - crypto_auth_hmacsha256_final@Base 0.6.0 - crypto_auth_hmacsha256_init@Base 0.6.0 - crypto_auth_hmacsha256_keybytes@Base 0.6.0 - crypto_auth_hmacsha256_update@Base 0.6.0 - crypto_auth_hmacsha256_verify@Base 0.6.0 - crypto_auth_hmacsha512256@Base 0.6.0 - crypto_auth_hmacsha512256_bytes@Base 0.6.0 - crypto_auth_hmacsha512256_final@Base 0.6.0 - crypto_auth_hmacsha512256_init@Base 0.6.0 - crypto_auth_hmacsha512256_keybytes@Base 0.6.0 - crypto_auth_hmacsha512256_update@Base 0.6.0 - crypto_auth_hmacsha512256_verify@Base 0.6.0 - crypto_auth_hmacsha512@Base 0.6.0 - crypto_auth_hmacsha512_bytes@Base 0.6.0 - crypto_auth_hmacsha512_final@Base 0.6.0 - crypto_auth_hmacsha512_init@Base 0.6.0 - crypto_auth_hmacsha512_keybytes@Base 0.6.0 - crypto_auth_hmacsha512_update@Base 0.6.0 - crypto_auth_hmacsha512_verify@Base 0.6.0 - crypto_auth_keybytes@Base 0.6.0 - crypto_auth_primitive@Base 0.6.0 - crypto_auth_verify@Base 0.6.0 - crypto_box@Base 0.6.0 - crypto_box_afternm@Base 0.6.0 - crypto_box_beforenm@Base 0.6.0 - crypto_box_beforenmbytes@Base 0.6.0 - crypto_box_boxzerobytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_afternm@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_beforenm@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_beforenmbytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_boxzerobytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_keypair@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_macbytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_noncebytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_open@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_open_afternm@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_publickeybytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_secretkeybytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_seed_keypair@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_seedbytes@Base 0.6.0 - crypto_box_curve25519xsalsa20poly1305_zerobytes@Base 0.6.0 - crypto_box_detached@Base 0.6.0 - crypto_box_easy@Base 0.6.0 - crypto_box_keypair@Base 0.6.0 - crypto_box_macbytes@Base 0.6.0 - crypto_box_noncebytes@Base 0.6.0 - crypto_box_open@Base 0.6.0 - crypto_box_open_afternm@Base 0.6.0 - crypto_box_open_detached@Base 0.6.0 - crypto_box_open_easy@Base 0.6.0 - crypto_box_primitive@Base 0.6.0 - crypto_box_publickeybytes@Base 0.6.0 - crypto_box_secretkeybytes@Base 0.6.0 - crypto_box_seed_keypair@Base 0.6.0 - crypto_box_seedbytes@Base 0.6.0 - crypto_box_zerobytes@Base 0.6.0 - crypto_core_hsalsa20@Base 0.6.0 - crypto_core_hsalsa20_constbytes@Base 0.6.0 - crypto_core_hsalsa20_inputbytes@Base 0.6.0 - crypto_core_hsalsa20_keybytes@Base 0.6.0 - crypto_core_hsalsa20_outputbytes@Base 0.6.0 - crypto_core_salsa2012@Base 0.6.0 - crypto_core_salsa2012_constbytes@Base 0.6.0 - crypto_core_salsa2012_inputbytes@Base 0.6.0 - crypto_core_salsa2012_keybytes@Base 0.6.0 - crypto_core_salsa2012_outputbytes@Base 0.6.0 - crypto_core_salsa208@Base 0.6.0 - crypto_core_salsa208_constbytes@Base 0.6.0 - crypto_core_salsa208_inputbytes@Base 0.6.0 - crypto_core_salsa208_keybytes@Base 0.6.0 - crypto_core_salsa208_outputbytes@Base 0.6.0 - crypto_core_salsa20@Base 0.6.0 - crypto_core_salsa20_constbytes@Base 0.6.0 - crypto_core_salsa20_inputbytes@Base 0.6.0 - crypto_core_salsa20_keybytes@Base 0.6.0 - crypto_core_salsa20_outputbytes@Base 0.6.0 - crypto_generichash@Base 0.6.0 - crypto_generichash_blake2b@Base 0.6.0 - crypto_generichash_blake2b_bytes@Base 0.6.0 - crypto_generichash_blake2b_bytes_max@Base 0.6.0 - crypto_generichash_blake2b_bytes_min@Base 0.6.0 - crypto_generichash_blake2b_final@Base 0.6.0 - crypto_generichash_blake2b_init@Base 0.6.0 - crypto_generichash_blake2b_init_salt_personal@Base 0.6.0 - crypto_generichash_blake2b_keybytes@Base 0.6.0 - crypto_generichash_blake2b_keybytes_max@Base 0.6.0 - crypto_generichash_blake2b_keybytes_min@Base 0.6.0 - crypto_generichash_blake2b_personalbytes@Base 0.6.0 - crypto_generichash_blake2b_salt_personal@Base 0.6.0 - crypto_generichash_blake2b_saltbytes@Base 0.6.0 - crypto_generichash_blake2b_update@Base 0.6.0 - crypto_generichash_bytes@Base 0.6.0 - crypto_generichash_bytes_max@Base 0.6.0 - crypto_generichash_bytes_min@Base 0.6.0 - crypto_generichash_final@Base 0.6.0 - crypto_generichash_init@Base 0.6.0 - crypto_generichash_keybytes@Base 0.6.0 - crypto_generichash_keybytes_max@Base 0.6.0 - crypto_generichash_keybytes_min@Base 0.6.0 - crypto_generichash_primitive@Base 0.6.0 - crypto_generichash_update@Base 0.6.0 - crypto_hash@Base 0.6.0 - crypto_hash_bytes@Base 0.6.0 - crypto_hash_primitive@Base 0.6.0 - crypto_hash_sha256@Base 0.6.0 - crypto_hash_sha256_bytes@Base 0.6.0 - crypto_hash_sha256_final@Base 0.6.0 - crypto_hash_sha256_init@Base 0.6.0 - crypto_hash_sha256_update@Base 0.6.0 - crypto_hash_sha512@Base 0.6.0 - crypto_hash_sha512_bytes@Base 0.6.0 - crypto_hash_sha512_final@Base 0.6.0 - crypto_hash_sha512_init@Base 0.6.0 - crypto_hash_sha512_update@Base 0.6.0 - crypto_onetimeauth@Base 0.6.0 - crypto_onetimeauth_bytes@Base 0.6.0 - crypto_onetimeauth_final@Base 0.6.0 - crypto_onetimeauth_init@Base 0.6.0 - crypto_onetimeauth_keybytes@Base 0.6.0 - crypto_onetimeauth_pick_best_implementation@Base 0.6.0 - crypto_onetimeauth_poly1305@Base 0.6.0 - crypto_onetimeauth_poly1305_bytes@Base 0.6.0 - crypto_onetimeauth_poly1305_final@Base 0.6.0 - crypto_onetimeauth_poly1305_implementation_name@Base 0.6.0 - crypto_onetimeauth_poly1305_init@Base 0.6.0 - crypto_onetimeauth_poly1305_keybytes@Base 0.6.0 - crypto_onetimeauth_poly1305_set_implementation@Base 0.6.0 - crypto_onetimeauth_poly1305_update@Base 0.6.0 - crypto_onetimeauth_poly1305_verify@Base 0.6.0 - crypto_onetimeauth_primitive@Base 0.6.0 - crypto_onetimeauth_update@Base 0.6.0 - crypto_onetimeauth_verify@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_ll@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_memlimit_interactive@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_memlimit_sensitive@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_opslimit_interactive@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_opslimit_sensitive@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_saltbytes@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_str@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_str_verify@Base 0.6.0 - crypto_pwhash_scryptsalsa208sha256_strbytes@Base 0.6.0 - crypto_pwhash_scryptxsalsa208sha256@Base 0.6.0 - crypto_pwhash_scryptxsalsa208sha256_saltbytes@Base 0.6.0 - crypto_pwhash_scryptxsalsa208sha256_str@Base 0.6.0 - crypto_pwhash_scryptxsalsa208sha256_str_verify@Base 0.6.0 - crypto_pwhash_scryptxsalsa208sha256_strbytes@Base 0.6.0 - crypto_scalarmult@Base 0.6.0 - crypto_scalarmult_base@Base 0.6.0 - crypto_scalarmult_bytes@Base 0.6.0 - crypto_scalarmult_curve25519@Base 0.6.0 - crypto_scalarmult_curve25519_base@Base 0.6.0 - crypto_scalarmult_curve25519_bytes@Base 0.6.0 - crypto_scalarmult_curve25519_scalarbytes@Base 0.6.0 - crypto_scalarmult_primitive@Base 0.6.0 - crypto_scalarmult_scalarbytes@Base 0.6.0 - crypto_secretbox@Base 0.6.0 - crypto_secretbox_boxzerobytes@Base 0.6.0 - crypto_secretbox_detached@Base 0.6.0 - crypto_secretbox_easy@Base 0.6.0 - crypto_secretbox_keybytes@Base 0.6.0 - crypto_secretbox_macbytes@Base 0.6.0 - crypto_secretbox_noncebytes@Base 0.6.0 - crypto_secretbox_open@Base 0.6.0 - crypto_secretbox_open_detached@Base 0.6.0 - crypto_secretbox_open_easy@Base 0.6.0 - crypto_secretbox_primitive@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305_boxzerobytes@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305_keybytes@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305_macbytes@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305_noncebytes@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305_open@Base 0.6.0 - crypto_secretbox_xsalsa20poly1305_zerobytes@Base 0.6.0 - crypto_secretbox_zerobytes@Base 0.6.0 - crypto_shorthash@Base 0.6.0 - crypto_shorthash_bytes@Base 0.6.0 - crypto_shorthash_keybytes@Base 0.6.0 - crypto_shorthash_primitive@Base 0.6.0 - crypto_shorthash_siphash24@Base 0.6.0 - crypto_shorthash_siphash24_bytes@Base 0.6.0 - crypto_shorthash_siphash24_keybytes@Base 0.6.0 - crypto_sign@Base 0.6.0 - crypto_sign_bytes@Base 0.6.0 - crypto_sign_detached@Base 0.6.1 - crypto_sign_ed25519@Base 0.6.0 - crypto_sign_ed25519_bytes@Base 0.6.0 - crypto_sign_ed25519_detached@Base 0.6.1 - crypto_sign_ed25519_keypair@Base 0.6.0 - crypto_sign_ed25519_open@Base 0.6.0 - crypto_sign_ed25519_publickeybytes@Base 0.6.0 - crypto_sign_ed25519_secretkeybytes@Base 0.6.0 - crypto_sign_ed25519_seed_keypair@Base 0.6.0 - crypto_sign_ed25519_seedbytes@Base 0.6.0 - crypto_sign_ed25519_verify_detached@Base 0.6.1 - crypto_sign_edwards25519sha512batch@Base 0.6.0 - crypto_sign_edwards25519sha512batch_bytes@Base 0.6.0 - crypto_sign_edwards25519sha512batch_keypair@Base 0.6.0 - crypto_sign_edwards25519sha512batch_open@Base 0.6.0 - crypto_sign_edwards25519sha512batch_publickeybytes@Base 0.6.0 - crypto_sign_edwards25519sha512batch_secretkeybytes@Base 0.6.0 - crypto_sign_keypair@Base 0.6.0 - crypto_sign_open@Base 0.6.0 - crypto_sign_primitive@Base 0.6.0 - crypto_sign_publickeybytes@Base 0.6.0 - crypto_sign_secretkeybytes@Base 0.6.0 - crypto_sign_seed_keypair@Base 0.6.0 - crypto_sign_seedbytes@Base 0.6.0 - crypto_sign_verify_detached@Base 0.6.1 - crypto_stream@Base 0.6.0 - crypto_stream_aes128ctr@Base 0.6.0 - crypto_stream_aes128ctr_afternm@Base 0.6.0 - crypto_stream_aes128ctr_beforenm@Base 0.6.0 - crypto_stream_aes128ctr_beforenmbytes@Base 0.6.0 - crypto_stream_aes128ctr_keybytes@Base 0.6.0 - crypto_stream_aes128ctr_noncebytes@Base 0.6.0 - crypto_stream_aes128ctr_xor@Base 0.6.0 - crypto_stream_aes128ctr_xor_afternm@Base 0.6.0 - crypto_stream_aes256estream@Base 0.6.0 - crypto_stream_aes256estream_afternm@Base 0.6.0 - crypto_stream_aes256estream_beforenm@Base 0.6.0 - crypto_stream_aes256estream_beforenmbytes@Base 0.6.0 - crypto_stream_aes256estream_keybytes@Base 0.6.0 - crypto_stream_aes256estream_noncebytes@Base 0.6.0 - crypto_stream_aes256estream_xor@Base 0.6.0 - crypto_stream_aes256estream_xor_afternm@Base 0.6.0 - crypto_stream_chacha20@Base 0.6.0 - crypto_stream_chacha20_keybytes@Base 0.6.0 - crypto_stream_chacha20_noncebytes@Base 0.6.0 - crypto_stream_chacha20_xor@Base 0.6.0 - crypto_stream_chacha20_xor_ic@Base 0.6.0 - crypto_stream_keybytes@Base 0.6.0 - crypto_stream_noncebytes@Base 0.6.0 - crypto_stream_primitive@Base 0.6.0 - crypto_stream_salsa2012@Base 0.6.0 - crypto_stream_salsa2012_keybytes@Base 0.6.0 - crypto_stream_salsa2012_noncebytes@Base 0.6.0 - crypto_stream_salsa2012_xor@Base 0.6.0 - crypto_stream_salsa208@Base 0.6.0 - crypto_stream_salsa208_keybytes@Base 0.6.0 - crypto_stream_salsa208_noncebytes@Base 0.6.0 - crypto_stream_salsa208_xor@Base 0.6.0 - crypto_stream_salsa20@Base 0.6.0 - crypto_stream_salsa20_keybytes@Base 0.6.0 - crypto_stream_salsa20_noncebytes@Base 0.6.0 - crypto_stream_salsa20_xor@Base 0.6.0 - crypto_stream_salsa20_xor_ic@Base 0.6.0 - crypto_stream_xor@Base 0.6.0 - crypto_stream_xsalsa20@Base 0.6.0 - crypto_stream_xsalsa20_keybytes@Base 0.6.0 - crypto_stream_xsalsa20_noncebytes@Base 0.6.0 - crypto_stream_xsalsa20_xor@Base 0.6.0 - crypto_verify_16@Base 0.6.0 - crypto_verify_16_bytes@Base 0.6.0 - crypto_verify_32@Base 0.6.0 - crypto_verify_32_bytes@Base 0.6.0 - crypto_verify_64@Base 0.6.0 - crypto_verify_64_bytes@Base 0.6.0 - randombytes@Base 0.6.0 - randombytes_buf@Base 0.6.0 - randombytes_close@Base 0.6.0 - randombytes_implementation_name@Base 0.6.0 - randombytes_random@Base 0.6.0 - randombytes_salsa20_implementation@Base 0.6.0 - randombytes_salsa20_implementation_name@Base 0.6.0 - randombytes_salsa20_random@Base 0.6.0 - randombytes_salsa20_random_buf@Base 0.6.0 - randombytes_salsa20_random_close@Base 0.6.0 - randombytes_salsa20_random_stir@Base 0.6.0 - randombytes_salsa20_random_uniform@Base 0.6.0 - randombytes_set_implementation@Base 0.6.0 - randombytes_stir@Base 0.6.0 - randombytes_sysrandom@Base 0.6.0 - randombytes_sysrandom_buf@Base 0.6.0 - randombytes_sysrandom_close@Base 0.6.0 - randombytes_sysrandom_implementation@Base 0.6.0 - randombytes_sysrandom_implementation_name@Base 0.6.0 - randombytes_sysrandom_stir@Base 0.6.0 - randombytes_sysrandom_uniform@Base 0.6.0 - randombytes_uniform@Base 0.6.0 - sodium_bin2hex@Base 0.6.0 - sodium_hex2bin@Base 0.6.0 - sodium_init@Base 0.6.0 - sodium_library_version_major@Base 0.6.0 - sodium_library_version_minor@Base 0.6.0 - sodium_memcmp@Base 0.6.0 - sodium_memzero@Base 0.6.0 - sodium_mlock@Base 0.6.0 - sodium_munlock@Base 0.6.0 - sodium_runtime_get_cpu_features@Base 0.6.0 - sodium_runtime_has_neon@Base 0.6.0 - sodium_runtime_has_sse2@Base 0.6.0 - sodium_runtime_has_sse3@Base 0.6.0 - sodium_version_string@Base 0.6.0 diff --git a/debian/libsodium13.docs b/debian/libsodium13.docs new file mode 100644 index 0000000..18afe51 --- /dev/null +++ b/debian/libsodium13.docs @@ -0,0 +1,3 @@ +AUTHORS +README.markdown +THANKS diff --git a/debian/libsodium13.install b/debian/libsodium13.install new file mode 100644 index 0000000..86ca402 --- /dev/null +++ b/debian/libsodium13.install @@ -0,0 +1 @@ +/usr/lib/*/libsodium.so.* diff --git a/debian/libsodium13.symbols b/debian/libsodium13.symbols new file mode 100644 index 0000000..cd302e7 --- /dev/null +++ b/debian/libsodium13.symbols @@ -0,0 +1,305 @@ +libsodium.so.13 libsodium13 #MINVER# + (arch=amd64)_crypto_stream_salsa20@Base 0.6.0 + (arch=amd64)_crypto_stream_salsa20_xor_ic@Base 0.6.0 + crypto_aead_chacha20poly1305_abytes@Base 0.6.0 + crypto_aead_chacha20poly1305_decrypt@Base 0.6.0 + crypto_aead_chacha20poly1305_encrypt@Base 0.6.0 + crypto_aead_chacha20poly1305_keybytes@Base 0.6.0 + crypto_aead_chacha20poly1305_npubbytes@Base 0.6.0 + crypto_aead_chacha20poly1305_nsecbytes@Base 0.6.0 + crypto_auth@Base 0.6.0 + crypto_auth_bytes@Base 0.6.0 + crypto_auth_hmacsha256@Base 0.6.0 + crypto_auth_hmacsha256_bytes@Base 0.6.0 + crypto_auth_hmacsha256_final@Base 0.6.0 + crypto_auth_hmacsha256_init@Base 0.6.0 + crypto_auth_hmacsha256_keybytes@Base 0.6.0 + crypto_auth_hmacsha256_update@Base 0.6.0 + crypto_auth_hmacsha256_verify@Base 0.6.0 + crypto_auth_hmacsha512256@Base 0.6.0 + crypto_auth_hmacsha512256_bytes@Base 0.6.0 + crypto_auth_hmacsha512256_final@Base 0.6.0 + crypto_auth_hmacsha512256_init@Base 0.6.0 + crypto_auth_hmacsha512256_keybytes@Base 0.6.0 + crypto_auth_hmacsha512256_update@Base 0.6.0 + crypto_auth_hmacsha512256_verify@Base 0.6.0 + crypto_auth_hmacsha512@Base 0.6.0 + crypto_auth_hmacsha512_bytes@Base 0.6.0 + crypto_auth_hmacsha512_final@Base 0.6.0 + crypto_auth_hmacsha512_init@Base 0.6.0 + crypto_auth_hmacsha512_keybytes@Base 0.6.0 + crypto_auth_hmacsha512_update@Base 0.6.0 + crypto_auth_hmacsha512_verify@Base 0.6.0 + crypto_auth_keybytes@Base 0.6.0 + crypto_auth_primitive@Base 0.6.0 + crypto_auth_verify@Base 0.6.0 + crypto_box@Base 0.6.0 + crypto_box_afternm@Base 0.6.0 + crypto_box_beforenm@Base 0.6.0 + crypto_box_beforenmbytes@Base 0.6.0 + crypto_box_boxzerobytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_afternm@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_beforenm@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_beforenmbytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_boxzerobytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_keypair@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_macbytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_noncebytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_open@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_open_afternm@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_publickeybytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_secretkeybytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_seed_keypair@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_seedbytes@Base 0.6.0 + crypto_box_curve25519xsalsa20poly1305_zerobytes@Base 0.6.0 + crypto_box_detached@Base 0.6.0 + crypto_box_easy@Base 0.6.0 + crypto_box_keypair@Base 0.6.0 + crypto_box_macbytes@Base 0.6.0 + crypto_box_noncebytes@Base 0.6.0 + crypto_box_open@Base 0.6.0 + crypto_box_open_afternm@Base 0.6.0 + crypto_box_open_detached@Base 0.6.0 + crypto_box_open_easy@Base 0.6.0 + crypto_box_primitive@Base 0.6.0 + crypto_box_publickeybytes@Base 0.6.0 + crypto_box_secretkeybytes@Base 0.6.0 + crypto_box_seed_keypair@Base 0.6.0 + crypto_box_seedbytes@Base 0.6.0 + crypto_box_zerobytes@Base 0.6.0 + crypto_core_hsalsa20@Base 0.6.0 + crypto_core_hsalsa20_constbytes@Base 0.6.0 + crypto_core_hsalsa20_inputbytes@Base 0.6.0 + crypto_core_hsalsa20_keybytes@Base 0.6.0 + crypto_core_hsalsa20_outputbytes@Base 0.6.0 + crypto_core_salsa2012@Base 0.6.0 + crypto_core_salsa2012_constbytes@Base 0.6.0 + crypto_core_salsa2012_inputbytes@Base 0.6.0 + crypto_core_salsa2012_keybytes@Base 0.6.0 + crypto_core_salsa2012_outputbytes@Base 0.6.0 + crypto_core_salsa208@Base 0.6.0 + crypto_core_salsa208_constbytes@Base 0.6.0 + crypto_core_salsa208_inputbytes@Base 0.6.0 + crypto_core_salsa208_keybytes@Base 0.6.0 + crypto_core_salsa208_outputbytes@Base 0.6.0 + crypto_core_salsa20@Base 0.6.0 + crypto_core_salsa20_constbytes@Base 0.6.0 + crypto_core_salsa20_inputbytes@Base 0.6.0 + crypto_core_salsa20_keybytes@Base 0.6.0 + crypto_core_salsa20_outputbytes@Base 0.6.0 + crypto_generichash@Base 0.6.0 + crypto_generichash_blake2b@Base 0.6.0 + crypto_generichash_blake2b_bytes@Base 0.6.0 + crypto_generichash_blake2b_bytes_max@Base 0.6.0 + crypto_generichash_blake2b_bytes_min@Base 0.6.0 + crypto_generichash_blake2b_final@Base 0.6.0 + crypto_generichash_blake2b_init@Base 0.6.0 + crypto_generichash_blake2b_init_salt_personal@Base 0.6.0 + crypto_generichash_blake2b_keybytes@Base 0.6.0 + crypto_generichash_blake2b_keybytes_max@Base 0.6.0 + crypto_generichash_blake2b_keybytes_min@Base 0.6.0 + crypto_generichash_blake2b_personalbytes@Base 0.6.0 + crypto_generichash_blake2b_salt_personal@Base 0.6.0 + crypto_generichash_blake2b_saltbytes@Base 0.6.0 + crypto_generichash_blake2b_update@Base 0.6.0 + crypto_generichash_bytes@Base 0.6.0 + crypto_generichash_bytes_max@Base 0.6.0 + crypto_generichash_bytes_min@Base 0.6.0 + crypto_generichash_final@Base 0.6.0 + crypto_generichash_init@Base 0.6.0 + crypto_generichash_keybytes@Base 0.6.0 + crypto_generichash_keybytes_max@Base 0.6.0 + crypto_generichash_keybytes_min@Base 0.6.0 + crypto_generichash_primitive@Base 0.6.0 + crypto_generichash_update@Base 0.6.0 + crypto_hash@Base 0.6.0 + crypto_hash_bytes@Base 0.6.0 + crypto_hash_primitive@Base 0.6.0 + crypto_hash_sha256@Base 0.6.0 + crypto_hash_sha256_bytes@Base 0.6.0 + crypto_hash_sha256_final@Base 0.6.0 + crypto_hash_sha256_init@Base 0.6.0 + crypto_hash_sha256_update@Base 0.6.0 + crypto_hash_sha512@Base 0.6.0 + crypto_hash_sha512_bytes@Base 0.6.0 + crypto_hash_sha512_final@Base 0.6.0 + crypto_hash_sha512_init@Base 0.6.0 + crypto_hash_sha512_update@Base 0.6.0 + crypto_onetimeauth@Base 0.6.0 + crypto_onetimeauth_bytes@Base 0.6.0 + crypto_onetimeauth_final@Base 0.6.0 + crypto_onetimeauth_init@Base 0.6.0 + crypto_onetimeauth_keybytes@Base 0.6.0 + crypto_onetimeauth_poly1305@Base 0.6.0 + crypto_onetimeauth_poly1305_bytes@Base 0.6.0 + crypto_onetimeauth_poly1305_final@Base 0.6.0 + crypto_onetimeauth_poly1305_implementation_name@Base 0.6.0 + crypto_onetimeauth_poly1305_init@Base 0.6.0 + crypto_onetimeauth_poly1305_keybytes@Base 0.6.0 + crypto_onetimeauth_poly1305_set_implementation@Base 0.6.0 + crypto_onetimeauth_poly1305_update@Base 0.6.0 + crypto_onetimeauth_poly1305_verify@Base 0.6.0 + crypto_onetimeauth_primitive@Base 0.6.0 + crypto_onetimeauth_update@Base 0.6.0 + crypto_onetimeauth_verify@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_ll@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_memlimit_interactive@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_memlimit_sensitive@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_opslimit_interactive@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_opslimit_sensitive@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_saltbytes@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_str@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_str_verify@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_strbytes@Base 0.6.0 + crypto_pwhash_scryptsalsa208sha256_strprefix@Base 0.7.0 + crypto_scalarmult@Base 0.6.0 + crypto_scalarmult_base@Base 0.6.0 + crypto_scalarmult_bytes@Base 0.6.0 + crypto_scalarmult_curve25519@Base 0.6.0 + crypto_scalarmult_curve25519_base@Base 0.6.0 + crypto_scalarmult_curve25519_bytes@Base 0.6.0 + crypto_scalarmult_curve25519_scalarbytes@Base 0.6.0 + crypto_scalarmult_primitive@Base 0.6.0 + crypto_scalarmult_scalarbytes@Base 0.6.0 + crypto_secretbox@Base 0.6.0 + crypto_secretbox_boxzerobytes@Base 0.6.0 + crypto_secretbox_detached@Base 0.6.0 + crypto_secretbox_easy@Base 0.6.0 + crypto_secretbox_keybytes@Base 0.6.0 + crypto_secretbox_macbytes@Base 0.6.0 + crypto_secretbox_noncebytes@Base 0.6.0 + crypto_secretbox_open@Base 0.6.0 + crypto_secretbox_open_detached@Base 0.6.0 + crypto_secretbox_open_easy@Base 0.6.0 + crypto_secretbox_primitive@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305_boxzerobytes@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305_keybytes@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305_macbytes@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305_noncebytes@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305_open@Base 0.6.0 + crypto_secretbox_xsalsa20poly1305_zerobytes@Base 0.6.0 + crypto_secretbox_zerobytes@Base 0.6.0 + crypto_shorthash@Base 0.6.0 + crypto_shorthash_bytes@Base 0.6.0 + crypto_shorthash_keybytes@Base 0.6.0 + crypto_shorthash_primitive@Base 0.6.0 + crypto_shorthash_siphash24@Base 0.6.0 + crypto_shorthash_siphash24_bytes@Base 0.6.0 + crypto_shorthash_siphash24_keybytes@Base 0.6.0 + crypto_sign@Base 0.6.0 + crypto_sign_bytes@Base 0.6.0 + crypto_sign_detached@Base 0.6.1 + crypto_sign_ed25519@Base 0.6.0 + crypto_sign_ed25519_bytes@Base 0.6.0 + crypto_sign_ed25519_detached@Base 0.6.1 + crypto_sign_ed25519_keypair@Base 0.6.0 + crypto_sign_ed25519_open@Base 0.6.0 + crypto_sign_ed25519_pk_to_curve25519@Base 0.7.0 + crypto_sign_ed25519_publickeybytes@Base 0.6.0 + crypto_sign_ed25519_secretkeybytes@Base 0.6.0 + crypto_sign_ed25519_seed_keypair@Base 0.6.0 + crypto_sign_ed25519_seedbytes@Base 0.6.0 + crypto_sign_ed25519_sk_to_curve25519@Base 0.7.0 + crypto_sign_ed25519_sk_to_pk@Base 0.7.0 + crypto_sign_ed25519_sk_to_seed@Base 0.7.0 + crypto_sign_ed25519_verify_detached@Base 0.6.1 + crypto_sign_edwards25519sha512batch@Base 0.6.0 + crypto_sign_edwards25519sha512batch_bytes@Base 0.6.0 + crypto_sign_edwards25519sha512batch_keypair@Base 0.6.0 + crypto_sign_edwards25519sha512batch_open@Base 0.6.0 + crypto_sign_edwards25519sha512batch_publickeybytes@Base 0.6.0 + crypto_sign_edwards25519sha512batch_secretkeybytes@Base 0.6.0 + crypto_sign_keypair@Base 0.6.0 + crypto_sign_open@Base 0.6.0 + crypto_sign_primitive@Base 0.6.0 + crypto_sign_publickeybytes@Base 0.6.0 + crypto_sign_secretkeybytes@Base 0.6.0 + crypto_sign_seed_keypair@Base 0.6.0 + crypto_sign_seedbytes@Base 0.6.0 + crypto_sign_verify_detached@Base 0.6.1 + crypto_stream@Base 0.6.0 + crypto_stream_aes128ctr@Base 0.6.0 + crypto_stream_aes128ctr_afternm@Base 0.6.0 + crypto_stream_aes128ctr_beforenm@Base 0.6.0 + crypto_stream_aes128ctr_beforenmbytes@Base 0.6.0 + crypto_stream_aes128ctr_keybytes@Base 0.6.0 + crypto_stream_aes128ctr_noncebytes@Base 0.6.0 + crypto_stream_aes128ctr_xor@Base 0.6.0 + crypto_stream_aes128ctr_xor_afternm@Base 0.6.0 + crypto_stream_chacha20@Base 0.6.0 + crypto_stream_chacha20_keybytes@Base 0.6.0 + crypto_stream_chacha20_noncebytes@Base 0.6.0 + crypto_stream_chacha20_xor@Base 0.6.0 + crypto_stream_chacha20_xor_ic@Base 0.6.0 + crypto_stream_keybytes@Base 0.6.0 + crypto_stream_noncebytes@Base 0.6.0 + crypto_stream_primitive@Base 0.6.0 + crypto_stream_salsa2012@Base 0.6.0 + crypto_stream_salsa2012_keybytes@Base 0.6.0 + crypto_stream_salsa2012_noncebytes@Base 0.6.0 + crypto_stream_salsa2012_xor@Base 0.6.0 + crypto_stream_salsa208@Base 0.6.0 + crypto_stream_salsa208_keybytes@Base 0.6.0 + crypto_stream_salsa208_noncebytes@Base 0.6.0 + crypto_stream_salsa208_xor@Base 0.6.0 + crypto_stream_salsa20@Base 0.6.0 + crypto_stream_salsa20_keybytes@Base 0.6.0 + crypto_stream_salsa20_noncebytes@Base 0.6.0 + crypto_stream_salsa20_xor@Base 0.6.0 + crypto_stream_salsa20_xor_ic@Base 0.6.0 + crypto_stream_xor@Base 0.6.0 + crypto_stream_xsalsa20@Base 0.6.0 + crypto_stream_xsalsa20_keybytes@Base 0.6.0 + crypto_stream_xsalsa20_noncebytes@Base 0.6.0 + crypto_stream_xsalsa20_xor@Base 0.6.0 + crypto_verify_16@Base 0.6.0 + crypto_verify_16_bytes@Base 0.6.0 + crypto_verify_32@Base 0.6.0 + crypto_verify_32_bytes@Base 0.6.0 + crypto_verify_64@Base 0.6.0 + crypto_verify_64_bytes@Base 0.6.0 + randombytes@Base 0.6.0 + randombytes_buf@Base 0.6.0 + randombytes_close@Base 0.6.0 + randombytes_implementation_name@Base 0.6.0 + randombytes_random@Base 0.6.0 + randombytes_salsa20_implementation@Base 0.6.0 + randombytes_salsa20_implementation_name@Base 0.6.0 + randombytes_salsa20_random@Base 0.6.0 + randombytes_salsa20_random_buf@Base 0.6.0 + randombytes_salsa20_random_close@Base 0.6.0 + randombytes_salsa20_random_stir@Base 0.6.0 + randombytes_salsa20_random_uniform@Base 0.6.0 + randombytes_set_implementation@Base 0.6.0 + randombytes_stir@Base 0.6.0 + randombytes_sysrandom@Base 0.6.0 + randombytes_sysrandom_buf@Base 0.6.0 + randombytes_sysrandom_close@Base 0.6.0 + randombytes_sysrandom_implementation@Base 0.6.0 + randombytes_sysrandom_implementation_name@Base 0.6.0 + randombytes_sysrandom_stir@Base 0.6.0 + randombytes_sysrandom_uniform@Base 0.6.0 + randombytes_uniform@Base 0.6.0 + sodium_allocarray@Base 0.7.0 + sodium_bin2hex@Base 0.6.0 + sodium_free@Base 0.7.0 + sodium_hex2bin@Base 0.6.0 + sodium_init@Base 0.6.0 + sodium_library_version_major@Base 0.6.0 + sodium_library_version_minor@Base 0.6.0 + sodium_malloc@Base 0.7.0 + sodium_memcmp@Base 0.6.0 + sodium_memzero@Base 0.6.0 + sodium_mlock@Base 0.6.0 + sodium_mprotect_noaccess@Base 0.7.0 + sodium_mprotect_readonly@Base 0.7.0 + sodium_mprotect_readwrite@Base 0.7.0 + sodium_munlock@Base 0.6.0 + sodium_runtime_get_cpu_features@Base 0.6.0 + sodium_runtime_has_neon@Base 0.6.0 + sodium_runtime_has_sse2@Base 0.6.0 + sodium_runtime_has_sse3@Base 0.6.0 + sodium_version_string@Base 0.6.0 -- cgit v1.2.3