-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request