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
Almost all hash libraries use the following API format. Please provide a wrapper.
void sha512_init(sha512ctx *ctx); void sha512_update(sha512ctx *ctx, const void *data, size_t len); void sha512_done(sha512ctx *ctx, uint8_t out[SHA512_HASH_LENGTH]);
So it would be very easy to swap out libraries, eg. one configuration doesn't need HW acceleration, just SW implementation.
The text was updated successfully, but these errors were encountered:
Hi @mrx23dot , Thanks for the proposal! We'll consider it in the future.
Could you please provide a reference to the hash libraries that you are mentioning?
Sorry, something went wrong.
e.g. openssl https://github.com/openssl/openssl/blob/e4ab9d5b5cb5a6d792c313ff4d5724612351818d/include/openssl/sha.h#L124
No branches or pull requests
Almost all hash libraries use the following API format. Please provide a wrapper.
So it would be very easy to swap out libraries, eg. one configuration doesn't need HW acceleration, just SW implementation.
The text was updated successfully, but these errors were encountered: