1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2026-01-06 11:41:12 +03:00

- Moved from unsigned long to uint32_t throughout code

This commit is contained in:
Paul Bakker
2012-10-01 14:41:15 +00:00
parent 6adff7497a
commit 5c2364c2ba
34 changed files with 539 additions and 454 deletions

View File

@@ -77,9 +77,9 @@ int padlock_xcryptecb( aes_context *ctx,
unsigned char output[16] )
{
int ebx;
unsigned long *rk;
unsigned long *blk;
unsigned long *ctrl;
uint32_t *rk;
uint32_t *blk;
uint32_t *ctrl;
unsigned char buf[256];
rk = ctx->rk;
@@ -119,9 +119,9 @@ int padlock_xcryptcbc( aes_context *ctx,
{
int ebx;
size_t count;
unsigned long *rk;
unsigned long *iw;
unsigned long *ctrl;
uint32_t *rk;
uint32_t *iw;
uint32_t *ctrl;
unsigned char buf[256];
if( ( (long) input & 15 ) != 0 ||