X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilccrypt%2Fciphers_def.h;h=98e445c400c605055e0cd7a625685c1a1e559777;hp=12f455312dda90b78c70e5b8e6ac49cf55b76952;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/lib/silccrypt/ciphers_def.h b/lib/silccrypt/ciphers_def.h index 12f45531..98e445c4 100644 --- a/lib/silccrypt/ciphers_def.h +++ b/lib/silccrypt/ciphers_def.h @@ -23,8 +23,8 @@ /* General definitions for algorithms */ typedef unsigned char u1byte; -typedef uint32 u4byte; -typedef uint32 u32; +typedef SilcUInt32 u4byte; +typedef SilcUInt32 u32; #define rotr(x, nr) (((x) >> ((int)(nr))) | ((x) << (32 - (int)(nr)))) #define rotl(x, nr) (((x) << ((int)(nr))) | ((x) >> (32 - (int)(nr))))