Changed mbedtls_platform_memcpy back to memcpy for selftest and test functions
This commit is contained in:
parent
3137fb271a
commit
b5c4671a80
11 changed files with 54 additions and 54 deletions
|
@ -983,7 +983,7 @@ static int ecjpake_lgc( void *p, unsigned char *out, size_t len )
|
|||
{
|
||||
size_t use_len = len > 4 ? 4 : len;
|
||||
x = 1664525 * x + 1013904223;
|
||||
mbedtls_platform_memcpy( out, &x, use_len );
|
||||
memcpy( out, &x, use_len );
|
||||
out += use_len;
|
||||
len -= use_len;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue