Software implementation of the SHA256, SHA384 and SHA512 algorithm. More...
Macros | |
#define | rotate_right(value, places) (((value) >> (places)) | ((value) << (32U - (places)))) |
#define | rotate_right_64bit(value, places) (((value) >> (places)) | ((value) << (64U - (places)))) |
Software implementation of the SHA256, SHA384 and SHA512 algorithm.