Added ability to use of wolf implementation of strtok using USE_WOLF_STRTOK. Updated Micrium uC/OS-III Port Updated root certs for OCSP scripts New Single Precision math option for RSA, DH and ECC (off by default). See --enable-sp. Speedups for AES GCM with AESNI (--enable-aesni) Sp...
Copy of the memory bytes are done in non-destructive manner. Memmove implementation in Cvoid memmove(void *dest, void *src, int size) { int i; if (dest < src) { for (i = 0; i < size; i++) { ((char *)dest)[i] = ((char *)src)[i]; } } else { for (i...