mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
Add RIPEMD-160 to the generic MD layer
This commit is contained in:
parent
ff40c3ac34
commit
e4d47a655b
9 changed files with 191 additions and 6 deletions
|
|
@ -81,6 +81,9 @@ void rmd160_starts( rmd160_context *ctx )
|
|||
ctx->state[4] = 0xC3D2E1F0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Process one block
|
||||
*/
|
||||
void rmd160_process( rmd160_context *ctx, const unsigned char data[64] )
|
||||
{
|
||||
uint32_t A, B, C, D, E, Ap, Bp, Cp, Dp, Ep, X[16];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue