We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0<=i<N && 0<=j<iで回すべきなのか、 0<=i<N && 0<=j<Nで回すべきなのか? 0<=i<N && 0<=j<iだとメモリ局所性が使える可能性があるが、直後に逆順でハッシュするためEVP_MD_CTX_copy_exを使うことができない。 0<=i<N && 0<=j<NだとEVP_MD_CTX_copy_exを使ってEVP_DigestUpdateを呼び出す回数を一回減らせる可能性がある。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
0<=i<N && 0<=j<iで回すべきなのか、
0<=i<N && 0<=j<Nで回すべきなのか?
0<=i<N && 0<=j<iだとメモリ局所性が使える可能性があるが、直後に逆順でハッシュするためEVP_MD_CTX_copy_exを使うことができない。
0<=i<N && 0<=j<NだとEVP_MD_CTX_copy_exを使ってEVP_DigestUpdateを呼び出す回数を一回減らせる可能性がある。
The text was updated successfully, but these errors were encountered: