X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilccrypt%2Fciphers_def.h;h=e254e68f93c1e9256b7140421abcb8f080e99514;hb=d1e71f42379e8b5cd0748a7aeae8561b02cfe53d;hp=12f455312dda90b78c70e5b8e6ac49cf55b76952;hpb=d47a87b03b846e2333ef57b2c0d81f1644992964;p=silc.git diff --git a/lib/silccrypt/ciphers_def.h b/lib/silccrypt/ciphers_def.h index 12f45531..e254e68f 100644 --- a/lib/silccrypt/ciphers_def.h +++ b/lib/silccrypt/ciphers_def.h @@ -2,14 +2,13 @@ ciphers_def.h - Author: Pekka Riikonen + Author: Pekka Riikonen Copyright (C) 1999 - 2000 Pekka Riikonen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,8 +22,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))))