1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

- First replacement of xyssl by polarssl where needed

This commit is contained in:
Paul Bakker
2009-01-03 21:51:57 +00:00
parent 8e831edc24
commit 40e46940df
70 changed files with 833 additions and 1201 deletions

View File

@@ -28,12 +28,12 @@
#include <string.h>
#include <time.h>
#include "xyssl/config.h"
#include "polarssl/config.h"
#if defined(XYSSL_HAVEGE_C)
#if defined(POLARSSL_HAVEGE_C)
#include "xyssl/havege.h"
#include "xyssl/timing.h"
#include "polarssl/havege.h"
#include "polarssl/timing.h"
/* ------------------------------------------------------------------------
* On average, one iteration accesses two 8-word blocks in the havege WALK
@@ -209,7 +209,7 @@ int havege_rand( void *p_rng )
return( ret );
}
#if defined(XYSSL_RAND_TEST)
#if defined(POLARSSL_RAND_TEST)
#include <stdio.h>