ncoder-1

Results 20 comments of ncoder-1

I used to have an external `.cmake` file that would use botan's `configure.py` to build itself, but I have since switched to using [conan](https://conan.io/) within my `CMakeLists.txt` file as it...

After further digging by setting the debug environment flag (`YKCS11_DBG=1`) for the pkcs11 module I'm using (`libykcs11.so`), it seems `PKCS11 error 113` is actually "`Key derivation parameters invalid`". The function...

Maybe I'm doing something wrong, but `set_public_point()` doesn't exist in a [Botan::ECDH_PrivateKey](https://botan.randombit.net/doxygen/classBotan_1_1ECDH__PrivateKey.html) object like `privkey_ecdh` above. It looks only implemented in `PKCS11_EC_PrivateKey`. I'll dig deeper on that one, maybe I...

Good news, when bypassing the `DER_Encoder` in the `agree` function of `PKCS11_ECDH_KA_Operation` [here](https://github.com/randombit/botan/blob/master/src/lib/prov/pkcs11/p11_ecdh.cpp#L63), everything works and a symmetric key is generated. I've also validated the symmetric key generated independently from...

Well, good news again, I was able to use this: `hsm_priv_key.set_public_point(hsm_pub_key.public_point(), Botan::PKCS11::PublicPointEncoding::Raw);` and it worked, but I had to find the public key object prior and pass it (`hsm_pub_key`) otherwise...

I can confirm the same behaviour on my side, running Arch and i3-gaps. At first I thought it was Steam, closed it and waited for the timer (using [xidlehook](https://github.com/jD91mZM2/xidlehook)) to...

I just did a few rounds of testing with Chromium. I was expecting the same behavior with the same websites, unfortunately, I can't reproduce the issue with Chromium (the lock...

It might be a good idea if you want faster mass adoption, that way you'd have both data-at-rest and end-to-end encryption.

I'm having the same issue. I'm using the tar.gz release (and not a git clone). For 1.9.25: ``` cd /tmp curl https://codeload.github.com/aws/aws-sdk-cpp/tar.gz/refs/tags/1.9.25 -o aws-sdk-cpp-1.9.25.tar.gz tar xvf aws-sdk-cpp-1.9.25.tar.gz cd aws-sdk-cpp-1.9.25 mkdir...