botan icon indicating copy to clipboard operation
botan copied to clipboard

Cryptography Toolkit

Results 267 botan issues
Sort by recently updated
recently updated
newest added

Maybe I did something very wrong but the following doesn't seem to work: ... include(FetchContent) FetchContent_Declare(botan GIT_REPOSITORY https://github.com/randombit/botan.git) FetchContent_MakeAvailable(botan) file( GLOB_RECURSE _srce_files LIST_SDIRECTORIES false "${CMAKE_CURRENT_LIST_DIR}/include/*.h" "${CMAKE_CURRENT_LIST_DIR}/src/*.cpp" ) add_executable(test_botan ${_srce_files}) target_link_libraries(test_botan...

usage question

I'm trying to build static universal lib on Mac M1 (arm64) for 2 architectures: arm64 and x86_64 to support both intel and M1 Macs. Configure with options: `./configure.py --module-policy=modern --cc-abi-flags="-force_cpusubtype_ALL...

documentation

Hi, I'm trying to derive a secret key from a private key stored on a pkcs11 token and a generated ecdh public key. Unfortunately, I'm doing something wrong as I'm...

socket.cpp, socket_udp.cpp and cli/socket_utils.h have a lot of shared/duplicated code for handling differences in socket interface between BSD and Windsock. Consolidate into a single internal header which can be used...

enhancement
good first issue
help wanted

Hi, we (@jurajsomorovsky @ic0ns @mmaehren @XoMEX @Kavakuo) are performing an analysis of the RFC-compliance of open-source TLS implementations. Below we list our findings for this implementation. We admit that some...

Following functions are defined in the C interface but not used in the Python binding: - [ ] botan_constant_time_compare - [ ] botan_hex_encode - [ ] botan_hex_decode - [ ]...

enhancement
good first issue
help wanted
documentation

Is there any interest in adding [Kuznyechik](https://en.wikipedia.org/wiki/Kuznyechik) as block cipher to Botan? Just finished adding it to a project, basically took the (public domain) code from http://cppcrypto.sourceforge.net/ and adapted the...

Following the instructions on https://botan.randombit.net/handbook/building.html#emscripten-webassembly, after successfully compiling the framework and trying to folllow the second step of converting the tests to wasm I get the following error: `~/git/botan$ em++...

This is similar to https://github.com/randombit/botan/issues/761. When using Botan from a class that itself is stored in a static variable, I get a "pure virtual method called" abort during shutdown. We...

I have web client based on boost-beast which is relying on botan for TLS. However, handshake fails with ay other site but yours: https://botan.randombit.net/news.html I am attaching the wire-shark log,...

usage question