mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
Add XXX_PROCESS_ALT mecchanism
This commit is contained in:
parent
26c9f90cae
commit
427b672551
9 changed files with 52 additions and 4 deletions
|
|
@ -112,6 +112,7 @@ void md2_starts( md2_context *ctx )
|
|||
ctx->left = 0;
|
||||
}
|
||||
|
||||
#if !defined(POLARSSL_MD2_PROCESS_ALT)
|
||||
void md2_process( md2_context *ctx )
|
||||
{
|
||||
int i, j;
|
||||
|
|
@ -145,6 +146,7 @@ void md2_process( md2_context *ctx )
|
|||
t = ctx->cksum[i];
|
||||
}
|
||||
}
|
||||
#endif /* !POLARSSL_MD2_PROCESS_ALT */
|
||||
|
||||
/*
|
||||
* MD2 process buffer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue