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

Currently the RSA class only supports the PKCS#1 (RFC 3447) standard. This is perfect for almost all cases except for when interfacing with SSH. [RFC 4253](https://tools.ietf.org/html/rfc4253#section-6.6) reverses the two public...

enhancement
help wanted

I would like to contribute by writing an OpenPGP packet parser. I would like to ask for your preferences regarding how the API should be structured. Also do you have...

enhancement

Hi, I'm working on a service for Linux which has to provides network service like sharing files via a central server using SSH and sftp through FUSE. Other things I...

Hi, Sorry for another question about Python Binding ABI. I encountered another problem when I do SymmetricCipher with AES-128/CBC mode. I ran some code like below. ``` #!/usr/bin/env python import...

**Problem:** The retransmissions of Flight 5 made by the dTLS client are not well handled. **Prerequisities:** • Botan cli as a dTLS server • Openssl as a dTLS client •...

Implemented functionallity which allows to perform ed25519 signing and verification using a Curve25519 key-pair. Usage: ` //sign Botan::PK_Signer signer(prevPrivKey25519, rng, "Pure"); signer.update(msgv); std::vector signature2 = signer.signature(rng); //verify Botan::PK_Verifier verifier(pubKey25519, "Pure");...

Currently Botan fails to parse X.509 certificates of the German smart meter root CAs (SM-Root.CA / SM-Test-Root.CA, cf. https://www.telesec.de/de/smartmetering-pki/downloadbereich/category/144-zertifikate) due to the "CRL Issuer" field within the "X509v3 CRL Distribution...

needs review

I have developed a pkcs#11 proxy implementation that transfers p11 calls done by an application to a p11 implementation on another host (the server). When I do a stress test...

Hallo, I was rewriting my DTLS Server and I face a weird problem. When I try out with the QT DTLS it throws an Exception that no PSK Identity was...

Hi, would it be possible to modify tls_record_received callback to accept data as non-const parameter? I need to modify received record and it being const forces me to make copy,...