cryptoTools icon indicating copy to clipboard operation
cryptoTools copied to clipboard

A repo to hold common tools used by my crypto projects

Results 6 cryptoTools issues
Sort by recently updated
recently updated
newest added

When building the cryptoTools without span-lite, i got error: > In included file: no type named 'const_iterator' in 'std::span'clang(typename_nested_not_found) > [MatrixView.h(16, 32): ]()Error occurred here > [Matrix.h(16, 27): ]()In instantiation...

In **cryptoTools/Common/CuckooIndex.cpp**, the function _selectParams_ is used to set CuckooHash Params, what is the basis for setting the parameters, and are there any research papers on the relevant experimental conclusions...

The address of boost is outdated in the /thirdparty/linux/boost.get, please change it. This problem not only make the Build process fail, but also affect the "libOTe" repository's Build process The...

Hello, I'm currently using libOTe and reviewing the Timer implementation in [cryptoTools/Common/Timer.cpp](https://github.com/osu-crypto/cryptoTools/blob/master/cryptoTools/Common/Timer.cpp). I have a question about the logic in Timer::reset(): ``` void Timer::reset() { setTimePoint("__Begin__"); mTimes.clear(); } ``` It...

``` /* * * * /cryptoTools/cryptoTools/Network/IoBuffer.h * */ template class RefSendBuff :public FixedSendBuff { public: const F& mObj; RefSendBuff(const F& obj) : FixedSendBuff(channelBuffData(*obj), channelBuffSize(*obj)) , mObj(obj) {} RefSendBuff(RefSendBuff&& v) :RefSendBuff(v.obj)...