changing some types from uint16_t to size_t

This commit is contained in:
bg 2013-09-20 02:11:05 +02:00
parent 6e767be64b
commit 25b45eaba6
2 changed files with 16 additions and 16 deletions

View File

@ -28,7 +28,7 @@ typedef struct {
/** name, flash pointer to the name string */
PGM_P name;
/** ctxsize_B, size of the hash context in bytes */
uint16_t ctxsize_B;
size_t ctxsize_B;
/** blocksize_b, size of an input block in bits */
uint16_t blocksize_b;
/** hashsize_b, size of the output hash value in bits */

View File

@ -89,7 +89,7 @@ typedef struct {
uint8_t type; /* 3 == streamcipher */
uint8_t flags;
PGM_P name;
uint16_t ctxsize_B;
size_t ctxsize_B;
uint16_t gensize_b;
sc_init_fpt init;
sc_gen_fpt gen;
@ -101,8 +101,8 @@ typedef struct {
typedef struct{
const scdesc_t *desc_ptr;
uint16_t keysize;
uint16_t ivsize;
size_t keysize;
size_t ivsize;
uint16_t index;
uint8_t* buffer;
void* ctx;