CTTK icon indicating copy to clipboard operation
CTTK copied to clipboard

Constant-Time Toolkit

Results 5 CTTK issues
Sort by recently updated
recently updated
newest added

We're using this library for some pretty cool stuff, but I have a complex, slow, and memory-intensive wrapper around CTTK to add unsigned support, including proper over/under-flow detection. Integrating this...

We'll emulate these with slower e operations for now. Rotation is not as important as modular numbers or exponentiation, but nice to have for crypto.

Hi, Thomas. I would like to use this code in a prototype crypto-related project that wont go live in 2018 (though the prototype should be functional in 2018). The earliest...

Julien ran into trouble when he needed to encode a big integer as little-endian bytes, since he did not know in advance how big to make the byte buffer. I...

Against commit 1d592024398f06c8eda1d325bdbd105ac32d92b3 `cttk_i31_rsh` seems to read memory out-of-bounds, depending on what parameters it is called with. The following test-case demonstrates the issue: ```c #include #include #include "inc/cttk.h" int main()...