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:
@@ -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 ||
|
||||
|
||||
Reference in New Issue
Block a user