crypto-tk
crypto-tk copied to clipboard
Cryptographic toolkit for searchable encryption.
/crypto-tk/tests/CmakeLists.txt modify line 27 add sse_cryto,delete OpenSSE::crypto-tk,add pthread(install it) /crypto-tk/CmakeLists.txt delete line 124,125 and pthread is needed,and libsodium-1.0.18,gmp-6.0.0a specificly if possible,i think it would be better run on the Mac...
The memory locking on cryptographic keys (through libsodium) is not thread safe, making it hard to use on real use cases, without cheating (ie. copying the buffers meant to initialize...
For now, the only way to compute a hash in crypto-tk is to give the input at once. This is an issue when we want to compute the hash of...
Although keys can be safely generated inside the library, they cannot be extracted (this is done on purpose), and hence cannot be stored. This is a problem when building real...
The AEZ implementation, which is indeed the reference implementation of AEZ, uses AES instructions to compute the AES round function, making the code not portable (although both AES-NI and NEON...