Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

libbotan-devel-2.19.3-2.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: libbotan-devel Distribution: openSUSE:Factory:zSystems
Version: 2.19.3 Vendor: openSUSE
Release: 2.1 Build date: Mon Nov 20 23:25:34 2023
Group: Development/Libraries/C and C++ Build host: s390zl23
Size: 1590190 Source RPM: Botan-2.19.3-2.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://botan.randombit.net
Summary: Development files for Botan
This package contains the header files and libraries needed to develop
programs that use the Botan library.

Provides

Requires

License

BSD-2-Clause

Changelog

* Fri Nov 17 2023 Marcus Meissner <meissner@suse.com>
  - remove botan binary (moves to Botan3)
* Thu Nov 17 2022 Jason Sikes <jsikes@suse.com>
  - Update to 2.19.3:
    * validate that an embedded certificate was issued by the end-entity
      issuing certificate authority when checking OCSP responses.
    * CVE-2022-43705
    * bsc#1205509
* Wed Jun 08 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 2022 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 2.19.1:
    * Add a forward error correction code compatible with the zfec
      library
* Wed Nov 24 2021 Dirk Müller <dmueller@suse.com>
  - update to 2.18.2:
    * Avoid using short exponents when encrypting in ElGamal, as some PGP
      implementations generate keys with parameters that are weak when
      short exponents are used CVE-2021-40529 boo#1190244
    * Fix a low risk OAEP decryption side channel
    * Work around a miscompilation of SHA-3 caused by a bug in Clang 12
      and XCode 13
    * Remove support in OpenSSL provider for algorithms which are
      disabled by default in OpenSSL 3.0
    * Add CI based on GitHub actions to replace Travis CI
    * Fix the online OCSP test, as the certificate involved had expired.
    * Fix some test failures induced by the expiration of the trust root
      "DST Root CA X3"
* Mon May 10 2021 Andreas Stieger <andreas.stieger@gmx.de>
  - Botan 2.18.1:
    * Fix a build regression in 2.18.0 which caused linker flags
      which contain -l within them (such as -fuse-linker-plugin)
      to be misinterpreted
    * Fix a bug which caused decoding a certificate which contained
      more than one name in a single RDN
    * Fix a bug which caused OID lookup failures when run in a locale
      which uses thousands separators (pt_BR was reported as having
      this issue)
    * DNS names in name constraints were compared with case
      sensitivity, which could cause valid certificates to be
      rejected
    * X.509 name constraint extensions were rejected if non-critical.
      RFC 5280 requires conforming CAs issue such extensions as
      critical, but not all certificates are compliant, and all other
      known implementations do not require this
    * X.509 name constraints were incorrectly applied to the
      certificate which included the constraint
  - build with lzma compression support
  - build with SQLite support
  - build with TPM support
  - fix SLE 12 build
* Fri Apr 16 2021 Ferdinand Thiessen <rpm@fthiessen.de>
  - Botan 2.18.0
    * Add support for implementing custom RNG objects through the FFI
      interface
    * Improve safegcd bounds, improving runtime performance
    * Reject non-TLS messages as quickly as possible without waiting
      for a full record.
    * Fixes for TLS::Stream::async_shutdown
  - Removed unneeded GNU MP build requirement, support was dropped
    with version 1.11.10
  - Enabled check target, verify integrity of build library
* Wed Dec 23 2020 Andreas Stieger <andreas.stieger@gmx.de>
  - Botan 2.17.3:
    * Harden against side-channels from decoding secret values by
      changing the base64, base58, base32, and hex encoding and
      decoding opearations to run in constant time
* Fri Nov 13 2020 Andreas Stieger <andreas.stieger@gmx.de>
  - Botan 2.17.2:
    * Fix build problem on ppc64
    * Resolve an issue in the modular square root algorithm
* Sat Nov 07 2020 Andreas Stieger <andreas.stieger@gmx.de>
  - Botan 2.17.1:
    * Fix bugs in ECDSA signature generation and verifications under
      specific circumstances
    * developer visible changes, including deprecation with warnings
    * optimization in the non-hardware assisted AES key generation
    * Add more detection logic for AVX-512 features
    * Fix a bug parsing deeply nested cipher names
    * Prevent requesting DER encoding of signatures when the
      algorithm did not support it
* Tue Oct 27 2020 Pedro Monreal <pmonreal@suse.com>
  - Update to 2.16.0:
    * Now userspace PRNG objects (such as AutoSeeded_RNG and HMAC_DRBG)
      use an internal lock, which allows safe concurrent use. This
      however is purely a precaution in case of accidental sharing of
      such RNG objects; for performance reasons it is always preferable
      to use a RNG per thread if a userspace RNG is needed.
    * DL_Group and EC_Group objects now track if they were created
      from a known trusted group (such as P-256 or an IPsec DH
      parameter). If so, then verification tests can be relaxed, as
      compared to parameters which may have been maliciously
      constructed in order to pass primality checks.
    * RandomNumberGenerator::add_entropy_T assumed its input was a POD
      type but did not verify this.
    * Support OCSP responders that live on a non-standard port.
    * Add support for Solaris sandbox.
    * Support suffixes on release numbers for alpha/beta releases.
    * Fix a bug in EAX which allowed requesting a 0 length tag, which
      had the effect of using a full length tag. Instead omit the
      length field, or request the full tag length explicitly.
    * Fix a memory leak in GCM where if passed an unsuitable block
      cipher (eg not 128 bit) it would throw an exception and leak
      the cipher object.
* Sun Aug 16 2020 Dirk Mueller <dmueller@suse.com>
  - update to 2.15:
    Fix a bug where the name constraint extension did not constrain the alternative
    DN field which can be included in a subject alternative name. This would allow
    a corrupted sub-CA which was otherwise constrained by a name constraint to
    issue a certificate with a prohibited DN.
    Fix a bug in the TLS server during client authentication where where if a
    (disabled by default) static RSA ciphersuite was selected, then no certificate
    request would be sent. This would have an equivalent effect to a client which
    simply replied with an empty Certificate message. (GH #2367)
    Replace the T-Tables implementation of AES with a 32-bit bitsliced version. As
    a result AES is now constant time on all processors. (GH #2346 #2348 #2353
    [#2329] #2355)
    In TLS, enforce that the key usage given in the server certificate allows the
    operation being performed in the ciphersuite. (GH #2367)
    In X.509 certificates, verify that the algorithm parameters are the expected
    NULL or empty. (GH #2367)
    Change the HMAC key schedule to attempt to reduce the information leaked from
    the key schedule with regards to the length of the key, as this is at times (as
    for example in PBKDF2) sensitive information. (GH #2362)
    Add Processor_RNG which wraps RDRAND or the POWER DARN RNG instructions. The
    previous RDRAND_RNG interface is deprecated. (GH #2352)
    The documentation claimed that mlocked pages were created with a guard page
    both before and after. However only a trailing guard page was used. Add a
    leading guard page. (GH #2334)
    Add support for generating and verifying DER-encoded ECDSA signatures in the C
    and Python interfaces. (GH #2357 #2356)
    Workaround a bug in GCC’s UbSan which triggered on a code sequence in XMSS (GH
    [#2322])
    When building documentation using Sphinx avoid parallel builds with version 3.0
    due to a bug in that version (GH #2326 #2324)
    Fix a memory leak in the CommonCrypto block cipher calls (GH #2371)
    Fix a flaky test that would occasionally fail when running the tests with a
    large number of threads. (GH #2325 #2197)
    Additional algorithms are now deprecated: XTEA, GOST, and Tiger. They will be
    removed in a future major release.
* Wed Apr 08 2020 Paolo Stivanin <info@paolostivanin.com>
  - Update to Botan 2.14:
    * Add support for using POWER8+ VPSUMD instruction to accelerate GCM (GH #2247)
    * Optimize the vector permute AES implementation, especially improving
      performance on ARMv7, Aarch64, and POWER. (GH #2243)
    * Use a new algorithm for modular inversions which is both faster
      and more resistant to side channel attacks. (GH #2287 #2296 #2301)
    * Address an issue in CBC padding which would leak the length of the plaintext
      which was being padded. Unpadding during decryption was not affected.
    * Optimize NIST prime field reductions, improving ECDSA by 3-9% (GH #2295)
    * Increase the size of the ECC blinding mask and scale it based on the
      size of the group order. (GH #880 #893 #2308)
    * Add server side support for the TLS asio wrapper. (GH #2229)
    * Add support for using Windows certificate store on MinGW (GH #2280)
    * Add a CLI utility cpu_clock which estimates the speed of the processor cycle counter.
    * Add Roughtime client (GH #2143 #1842)
    * Add support for XMSS X.509 certificates (GH #2172)
    * Add support for X.509 CRLs in FFI layer and Python wrapper (GH #2213)
    * Add AVX2 implementation of SHACAL2 (GH #2196)
    * Support more functionality for X.509 in the Python API (GH #2165)
    * Add generic CPU target useful when building for some new or unusual platform.
    * Disable MD5 in BSI or NIST modes (GH #2188)
    * Many currently public headers are being deprecated. If any such header is included by
      an application, a warning is issued at compile time.
      Headers issuing this warning will be made internal in a future major release.
    * RSA signature performance improvements (GH #2068 #2070)
    * Performance improvements for GCM (GH #2024 #2099 #2119), OCB (#2122), XTS (#2123) and
      ChaCha20Poly1305 (GH #2117), especially for small messages.
    * Add support for constant time AES using NEON and AltiVec (GH #2093 #2095 #2100)
    * Improve performance of POWER8 AES instructions (GH #2096)
    * Add support for the POWER9 hardware random number generator (GH #2026)
    * Add support for 64-bit version of RDRAND, doubling performance on x86-64 (GH #934 #2022)
    * In DTLS server, support a client crashing and then reconnecting from the same
      source port, as described in RFC 6347 sec 4.2.8 (GH #2029)
    * Optimize DTLS MTU splitting to split precisely to the set MTU (GH #2042)
    * Add support for the TLS v1.3 downgrade indicator. (GH #2027)
    * Add Argon2 PBKDF and password hash (GH #459 #1981 #1987)
    * Add Bcrypt-PBKDF (GH #1990)
    * Add server side support for issuing DTLS HelloVerifyRequest messages (GH #1999)
    * Add support for the TLS v1.3 supported_versions extension. (GH #1976)
    * Add Ed25519ph compatible with RFC 8032 (GH #1699 #2000)
    * Add support for OCSP stapling on server side. (GH #1703 #1967)
    * Add a boost::asio TLS stream compatible with boost::asio::ssl. (GH #1839 #1927 #1992)
    * Add a certificate store for Linux/Unix systems. (GH #1885 #1936)
    * Various Fixes

Files

/usr/include/botan-2
/usr/include/botan-2/botan
/usr/include/botan-2/botan/adler32.h
/usr/include/botan-2/botan/aead.h
/usr/include/botan-2/botan/aes.h
/usr/include/botan-2/botan/alg_id.h
/usr/include/botan-2/botan/argon2.h
/usr/include/botan-2/botan/aria.h
/usr/include/botan-2/botan/asn1_alt_name.h
/usr/include/botan-2/botan/asn1_attribute.h
/usr/include/botan-2/botan/asn1_obj.h
/usr/include/botan-2/botan/asn1_oid.h
/usr/include/botan-2/botan/asn1_print.h
/usr/include/botan-2/botan/asn1_str.h
/usr/include/botan-2/botan/asn1_time.h
/usr/include/botan-2/botan/assert.h
/usr/include/botan-2/botan/auto_rng.h
/usr/include/botan-2/botan/b64_filt.h
/usr/include/botan-2/botan/base32.h
/usr/include/botan-2/botan/base58.h
/usr/include/botan-2/botan/base64.h
/usr/include/botan-2/botan/basefilt.h
/usr/include/botan-2/botan/bcrypt.h
/usr/include/botan-2/botan/bcrypt_pbkdf.h
/usr/include/botan-2/botan/ber_dec.h
/usr/include/botan-2/botan/bigint.h
/usr/include/botan-2/botan/blake2b.h
/usr/include/botan-2/botan/blinding.h
/usr/include/botan-2/botan/block_cipher.h
/usr/include/botan-2/botan/blowfish.h
/usr/include/botan-2/botan/botan.h
/usr/include/botan-2/botan/bswap.h
/usr/include/botan-2/botan/buf_comp.h
/usr/include/botan-2/botan/buf_filt.h
/usr/include/botan-2/botan/build.h
/usr/include/botan-2/botan/bzip2.h
/usr/include/botan-2/botan/calendar.h
/usr/include/botan-2/botan/camellia.h
/usr/include/botan-2/botan/cascade.h
/usr/include/botan-2/botan/cast128.h
/usr/include/botan-2/botan/cast256.h
/usr/include/botan-2/botan/cbc.h
/usr/include/botan-2/botan/cbc_mac.h
/usr/include/botan-2/botan/ccm.h
/usr/include/botan-2/botan/cecpq1.h
/usr/include/botan-2/botan/cert_status.h
/usr/include/botan-2/botan/certstor.h
/usr/include/botan-2/botan/certstor_flatfile.h
/usr/include/botan-2/botan/certstor_sql.h
/usr/include/botan-2/botan/certstor_sqlite.h
/usr/include/botan-2/botan/certstor_system.h
/usr/include/botan-2/botan/cfb.h
/usr/include/botan-2/botan/chacha.h
/usr/include/botan-2/botan/chacha20poly1305.h
/usr/include/botan-2/botan/chacha_rng.h
/usr/include/botan-2/botan/charset.h
/usr/include/botan-2/botan/cipher_filter.h
/usr/include/botan-2/botan/cipher_mode.h
/usr/include/botan-2/botan/cmac.h
/usr/include/botan-2/botan/comb4p.h
/usr/include/botan-2/botan/comp_filter.h
/usr/include/botan-2/botan/compiler.h
/usr/include/botan-2/botan/compression.h
/usr/include/botan-2/botan/cpuid.h
/usr/include/botan-2/botan/crc24.h
/usr/include/botan-2/botan/crc32.h
/usr/include/botan-2/botan/credentials_manager.h
/usr/include/botan-2/botan/crl_ent.h
/usr/include/botan-2/botan/cryptobox.h
/usr/include/botan-2/botan/ctr.h
/usr/include/botan-2/botan/curve25519.h
/usr/include/botan-2/botan/curve_gfp.h
/usr/include/botan-2/botan/curve_nistp.h
/usr/include/botan-2/botan/data_snk.h
/usr/include/botan-2/botan/data_src.h
/usr/include/botan-2/botan/database.h
/usr/include/botan-2/botan/datastor.h
/usr/include/botan-2/botan/der_enc.h
/usr/include/botan-2/botan/des.h
/usr/include/botan-2/botan/desx.h
/usr/include/botan-2/botan/dh.h
/usr/include/botan-2/botan/divide.h
/usr/include/botan-2/botan/dl_algo.h
/usr/include/botan-2/botan/dl_group.h
/usr/include/botan-2/botan/dlies.h
/usr/include/botan-2/botan/dsa.h
/usr/include/botan-2/botan/dyn_load.h
/usr/include/botan-2/botan/eax.h
/usr/include/botan-2/botan/ec_group.h
/usr/include/botan-2/botan/ecc_key.h
/usr/include/botan-2/botan/ecdh.h
/usr/include/botan-2/botan/ecdsa.h
/usr/include/botan-2/botan/ecgdsa.h
/usr/include/botan-2/botan/ecies.h
/usr/include/botan-2/botan/eckcdsa.h
/usr/include/botan-2/botan/ed25519.h
/usr/include/botan-2/botan/elgamal.h
/usr/include/botan-2/botan/eme.h
/usr/include/botan-2/botan/eme_pkcs.h
/usr/include/botan-2/botan/eme_raw.h
/usr/include/botan-2/botan/emsa.h
/usr/include/botan-2/botan/emsa1.h
/usr/include/botan-2/botan/emsa_pkcs1.h
/usr/include/botan-2/botan/emsa_raw.h
/usr/include/botan-2/botan/emsa_x931.h
/usr/include/botan-2/botan/entropy_src.h
/usr/include/botan-2/botan/exceptn.h
/usr/include/botan-2/botan/fd_unix.h
/usr/include/botan-2/botan/ffi.h
/usr/include/botan-2/botan/filter.h
/usr/include/botan-2/botan/filters.h
/usr/include/botan-2/botan/fpe_fe1.h
/usr/include/botan-2/botan/gcm.h
/usr/include/botan-2/botan/gf2m_small_m.h
/usr/include/botan-2/botan/ghash.h
/usr/include/botan-2/botan/gmac.h
/usr/include/botan-2/botan/gost_28147.h
/usr/include/botan-2/botan/gost_3410.h
/usr/include/botan-2/botan/gost_3411.h
/usr/include/botan-2/botan/hash.h
/usr/include/botan-2/botan/hash_id.h
/usr/include/botan-2/botan/hex.h
/usr/include/botan-2/botan/hex_filt.h
/usr/include/botan-2/botan/hkdf.h
/usr/include/botan-2/botan/hmac.h
/usr/include/botan-2/botan/hmac_drbg.h
/usr/include/botan-2/botan/hotp.h
/usr/include/botan-2/botan/http_util.h
/usr/include/botan-2/botan/idea.h
/usr/include/botan-2/botan/init.h
/usr/include/botan-2/botan/iso9796.h
/usr/include/botan-2/botan/kasumi.h
/usr/include/botan-2/botan/kdf.h
/usr/include/botan-2/botan/kdf1.h
/usr/include/botan-2/botan/kdf1_iso18033.h
/usr/include/botan-2/botan/kdf2.h
/usr/include/botan-2/botan/keccak.h
/usr/include/botan-2/botan/key_constraint.h
/usr/include/botan-2/botan/key_filt.h
/usr/include/botan-2/botan/key_spec.h
/usr/include/botan-2/botan/keypair.h
/usr/include/botan-2/botan/lion.h
/usr/include/botan-2/botan/loadstor.h
/usr/include/botan-2/botan/locking_allocator.h
/usr/include/botan-2/botan/lookup.h
/usr/include/botan-2/botan/lzma.h
/usr/include/botan-2/botan/mac.h
/usr/include/botan-2/botan/mceies.h
/usr/include/botan-2/botan/mceliece.h
/usr/include/botan-2/botan/md4.h
/usr/include/botan-2/botan/md5.h
/usr/include/botan-2/botan/mdx_hash.h
/usr/include/botan-2/botan/mem_ops.h
/usr/include/botan-2/botan/mgf1.h
/usr/include/botan-2/botan/misty1.h
/usr/include/botan-2/botan/mode_pad.h
/usr/include/botan-2/botan/monty.h
/usr/include/botan-2/botan/mul128.h
/usr/include/botan-2/botan/mutex.h
/usr/include/botan-2/botan/name_constraint.h
/usr/include/botan-2/botan/newhope.h
/usr/include/botan-2/botan/nist_keywrap.h
/usr/include/botan-2/botan/noekeon.h
/usr/include/botan-2/botan/numthry.h
/usr/include/botan-2/botan/oaep.h
/usr/include/botan-2/botan/ocb.h
/usr/include/botan-2/botan/ocsp.h
/usr/include/botan-2/botan/ocsp_types.h
/usr/include/botan-2/botan/ofb.h
/usr/include/botan-2/botan/oids.h
/usr/include/botan-2/botan/otp.h
/usr/include/botan-2/botan/p11.h
/usr/include/botan-2/botan/p11_ecc_key.h
/usr/include/botan-2/botan/p11_ecdh.h
/usr/include/botan-2/botan/p11_ecdsa.h
/usr/include/botan-2/botan/p11_module.h
/usr/include/botan-2/botan/p11_object.h
/usr/include/botan-2/botan/p11_randomgenerator.h
/usr/include/botan-2/botan/p11_rsa.h
/usr/include/botan-2/botan/p11_session.h
/usr/include/botan-2/botan/p11_slot.h
/usr/include/botan-2/botan/p11_types.h
/usr/include/botan-2/botan/p11_x509.h
/usr/include/botan-2/botan/package.h
/usr/include/botan-2/botan/par_hash.h
/usr/include/botan-2/botan/parsing.h
/usr/include/botan-2/botan/passhash9.h
/usr/include/botan-2/botan/pbes2.h
/usr/include/botan-2/botan/pbkdf.h
/usr/include/botan-2/botan/pbkdf1.h
/usr/include/botan-2/botan/pbkdf2.h
/usr/include/botan-2/botan/pem.h
/usr/include/botan-2/botan/pgp_s2k.h
/usr/include/botan-2/botan/pipe.h
/usr/include/botan-2/botan/pk_algs.h
/usr/include/botan-2/botan/pk_keys.h
/usr/include/botan-2/botan/pk_ops.h
/usr/include/botan-2/botan/pk_ops_fwd.h
/usr/include/botan-2/botan/pkcs10.h
/usr/include/botan-2/botan/pkcs11.h
/usr/include/botan-2/botan/pkcs11f.h
/usr/include/botan-2/botan/pkcs11t.h
/usr/include/botan-2/botan/pkcs8.h
/usr/include/botan-2/botan/pkix_enums.h
/usr/include/botan-2/botan/pkix_types.h
/usr/include/botan-2/botan/point_gfp.h
/usr/include/botan-2/botan/poly1305.h
/usr/include/botan-2/botan/polyn_gf2m.h
/usr/include/botan-2/botan/pow_mod.h
/usr/include/botan-2/botan/prf_tls.h
/usr/include/botan-2/botan/prf_x942.h
/usr/include/botan-2/botan/psk_db.h
/usr/include/botan-2/botan/psk_db_sql.h
/usr/include/botan-2/botan/pssr.h
/usr/include/botan-2/botan/pubkey.h
/usr/include/botan-2/botan/pwdhash.h
/usr/include/botan-2/botan/rc4.h
/usr/include/botan-2/botan/reducer.h
/usr/include/botan-2/botan/rfc3394.h
/usr/include/botan-2/botan/rfc6979.h
/usr/include/botan-2/botan/rmd160.h
/usr/include/botan-2/botan/rng.h
/usr/include/botan-2/botan/rotate.h
/usr/include/botan-2/botan/roughtime.h
/usr/include/botan-2/botan/rsa.h
/usr/include/botan-2/botan/salsa20.h
/usr/include/botan-2/botan/scan_name.h
/usr/include/botan-2/botan/scrypt.h
/usr/include/botan-2/botan/secmem.h
/usr/include/botan-2/botan/secqueue.h
/usr/include/botan-2/botan/seed.h
/usr/include/botan-2/botan/serpent.h
/usr/include/botan-2/botan/sha160.h
/usr/include/botan-2/botan/sha2_32.h
/usr/include/botan-2/botan/sha2_64.h
/usr/include/botan-2/botan/sha3.h
/usr/include/botan-2/botan/shacal2.h
/usr/include/botan-2/botan/shake.h
/usr/include/botan-2/botan/shake_cipher.h
/usr/include/botan-2/botan/siphash.h
/usr/include/botan-2/botan/siv.h
/usr/include/botan-2/botan/skein_512.h
/usr/include/botan-2/botan/sm2.h
/usr/include/botan-2/botan/sm2_enc.h
/usr/include/botan-2/botan/sm3.h
/usr/include/botan-2/botan/sm4.h
/usr/include/botan-2/botan/sodium.h
/usr/include/botan-2/botan/sp800_108.h
/usr/include/botan-2/botan/sp800_56a.h
/usr/include/botan-2/botan/sp800_56c.h
/usr/include/botan-2/botan/sqlite3.h
/usr/include/botan-2/botan/srp6.h
/usr/include/botan-2/botan/stateful_rng.h
/usr/include/botan-2/botan/stl_compatibility.h
/usr/include/botan-2/botan/stream_cipher.h
/usr/include/botan-2/botan/stream_mode.h
/usr/include/botan-2/botan/streebog.h
/usr/include/botan-2/botan/sym_algo.h
/usr/include/botan-2/botan/symkey.h
/usr/include/botan-2/botan/system_rng.h
/usr/include/botan-2/botan/threefish.h
/usr/include/botan-2/botan/threefish_512.h
/usr/include/botan-2/botan/tiger.h
/usr/include/botan-2/botan/tls_alert.h
/usr/include/botan-2/botan/tls_algos.h
/usr/include/botan-2/botan/tls_blocking.h
/usr/include/botan-2/botan/tls_callbacks.h
/usr/include/botan-2/botan/tls_channel.h
/usr/include/botan-2/botan/tls_ciphersuite.h
/usr/include/botan-2/botan/tls_client.h
/usr/include/botan-2/botan/tls_exceptn.h
/usr/include/botan-2/botan/tls_extensions.h
/usr/include/botan-2/botan/tls_handshake_msg.h
/usr/include/botan-2/botan/tls_magic.h
/usr/include/botan-2/botan/tls_messages.h
/usr/include/botan-2/botan/tls_policy.h
/usr/include/botan-2/botan/tls_server.h
/usr/include/botan-2/botan/tls_server_info.h
/usr/include/botan-2/botan/tls_session.h
/usr/include/botan-2/botan/tls_session_manager.h
/usr/include/botan-2/botan/tls_session_manager_sql.h
/usr/include/botan-2/botan/tls_session_manager_sqlite.h
/usr/include/botan-2/botan/tls_version.h
/usr/include/botan-2/botan/totp.h
/usr/include/botan-2/botan/tpm.h
/usr/include/botan-2/botan/tss.h
/usr/include/botan-2/botan/twofish.h
/usr/include/botan-2/botan/types.h
/usr/include/botan-2/botan/uuid.h
/usr/include/botan-2/botan/version.h
/usr/include/botan-2/botan/whrlpool.h
/usr/include/botan-2/botan/workfactor.h
/usr/include/botan-2/botan/x509_ca.h
/usr/include/botan-2/botan/x509_crl.h
/usr/include/botan-2/botan/x509_dn.h
/usr/include/botan-2/botan/x509_ext.h
/usr/include/botan-2/botan/x509_key.h
/usr/include/botan-2/botan/x509_obj.h
/usr/include/botan-2/botan/x509cert.h
/usr/include/botan-2/botan/x509path.h
/usr/include/botan-2/botan/x509self.h
/usr/include/botan-2/botan/x919_mac.h
/usr/include/botan-2/botan/xmss.h
/usr/include/botan-2/botan/xmss_hash.h
/usr/include/botan-2/botan/xmss_key_pair.h
/usr/include/botan-2/botan/xmss_parameters.h
/usr/include/botan-2/botan/xmss_privatekey.h
/usr/include/botan-2/botan/xmss_publickey.h
/usr/include/botan-2/botan/xmss_wots.h
/usr/include/botan-2/botan/xmss_wots_parameters.h
/usr/include/botan-2/botan/xmss_wots_privatekey.h
/usr/include/botan-2/botan/xmss_wots_publickey.h
/usr/include/botan-2/botan/xtea.h
/usr/include/botan-2/botan/xts.h
/usr/include/botan-2/botan/zfec.h
/usr/include/botan-2/botan/zlib.h
/usr/lib64/libbotan-2.so
/usr/lib64/pkgconfig/botan-2.pc


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024