Changed mbedtls_platform_memcpy back to memcpy for selftest and test functions

This commit is contained in:
Teppo Järvelin 2019-10-04 13:35:55 +03:00
parent 3137fb271a
commit b5c4671a80
11 changed files with 54 additions and 54 deletions

View file

@ -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;
}