PolarSSL: update to current stable version (1.3.4)

I just removed Externals/polarssl/, added the new version, then deleted
the following files/directories:

DartConfiguration.tcl
Makefile
doxygen/
library/Makefile
programs/
scripts/
tests/
visualc/
This commit is contained in:
Tillmann Karras
2014-02-04 09:56:38 +01:00
parent 7be3dae988
commit d025d63fd6
152 changed files with 33088 additions and 13751 deletions

View File

@ -43,7 +43,7 @@
int padlock_supports( int feature )
{
static int flags = -1;
int ebx, edx;
int ebx = 0, edx = 0;
if( flags == -1 )
{
@ -76,7 +76,7 @@ int padlock_xcryptecb( aes_context *ctx,
const unsigned char input[16],
unsigned char output[16] )
{
int ebx;
int ebx = 0;
uint32_t *rk;
uint32_t *blk;
uint32_t *ctrl;
@ -117,7 +117,7 @@ int padlock_xcryptcbc( aes_context *ctx,
const unsigned char *input,
unsigned char *output )
{
int ebx;
int ebx = 0;
size_t count;
uint32_t *rk;
uint32_t *iw;