intel / pailliercryptolib

Intel Paillier Cryptosystem Library is an open-source library which provides accelerated performance of a partial homomorphic encryption (HE), named Paillier cryptosystem, by utilizing Intel® IPP-Crypto on AVX512IFMA instructions. Intel Paillier Cryptosystem Library is certified for ISO compliance.
Apache License 2.0
73 stars 18 forks source link

Fix mismatched new/delete error #50

Closed shaojian-ant closed 1 year ago

justalittlenoob commented 1 year ago

Hi @shaojian-ant Thank you very much for the PR.
The CI pre-commit didn't passed, due to there is a minor format issue.
(delete[] (Ipp8u*)m_pBN; this line should be changed to delete[](Ipp8u*) m_pBN;)

It would be great if you can fix it before merging the PR.

shaojian-ant commented 1 year ago

@justalittlenoob I have pushed a new commit, please retry the CI.

fangxiaoran commented 1 year ago

Hi @shaojian-ant, really appreciate your contribution for IPCL! I wonder how you know this repo?