X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilccrypt%2Fblowfish.c;h=fb3d8c8b65a8830cfeb728952225ad2f70bd27e1;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hp=1bea03106d4050ea5e5a119c3ee8f8a9c92d0bb2;hpb=2dc218143c7859f7529396dc121ae08e2fd78da0;p=silc.git diff --git a/lib/silccrypt/blowfish.c b/lib/silccrypt/blowfish.c index 1bea0310..fb3d8c8b 100644 --- a/lib/silccrypt/blowfish.c +++ b/lib/silccrypt/blowfish.c @@ -77,7 +77,7 @@ SILC_CIPHER_API_CONTEXT_LEN(blowfish) SILC_CIPHER_API_ENCRYPT_CBC(blowfish) { - uint32 tiv[4]; + SilcUInt32 tiv[4]; int i; SILC_CBC_GET_IV(tiv, iv); @@ -102,7 +102,7 @@ SILC_CIPHER_API_ENCRYPT_CBC(blowfish) SILC_CIPHER_API_DECRYPT_CBC(blowfish) { - uint32 tmp[4], tmp2[4], tiv[4]; + SilcUInt32 tmp[4], tmp2[4], tiv[4]; int i; SILC_CBC_GET_IV(tiv, iv); @@ -393,7 +393,7 @@ static u32 bf_sbox[256 * 4] = /* * Round loop unrolling macros, S is a pointer to a S-Box array - * organized in 4 uint32s at a row. + * organized in 4 SilcUInt32s at a row. */ #define GET32_3(x) (((x) & 0xff))