Mercurial > dropbear
comparison crypt.c @ 15:6362d3854bb4 libtomcrypt-orig
0.96 release of LibTomCrypt
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 15 Jun 2004 14:07:21 +0000 |
parents | 7faae8f46238 |
children | 09ab3354aa21 5d99163f7e32 |
comparison
equal
deleted
inserted
replaced
3:7faae8f46238 | 15:6362d3854bb4 |
---|---|
118 " RIPEMD128\n" | 118 " RIPEMD128\n" |
119 #endif | 119 #endif |
120 #if defined(RIPEMD160) | 120 #if defined(RIPEMD160) |
121 " RIPEMD160\n" | 121 " RIPEMD160\n" |
122 #endif | 122 #endif |
123 #if defined(WHIRLPOOL) | |
124 " WHIRLPOOL\n" | |
125 #endif | |
123 | 126 |
124 "\nBlock Chaining Modes:\n" | 127 "\nBlock Chaining Modes:\n" |
125 #if defined(CFB) | 128 #if defined(CFB) |
126 " CFB\n" | 129 " CFB\n" |
127 #endif | 130 #endif |
149 " RC4\n" | 152 " RC4\n" |
150 #endif | 153 #endif |
151 | 154 |
152 "\nPK Algs:\n" | 155 "\nPK Algs:\n" |
153 #if defined(MRSA) | 156 #if defined(MRSA) |
154 " RSA\n" | 157 " RSA" |
158 #if defined(RSA_TIMING) | |
159 " + RSA_TIMING " | |
160 #endif | |
161 "\n" | |
155 #endif | 162 #endif |
156 #if defined(MDH) | 163 #if defined(MDH) |
157 " DH\n" | 164 " DH\n" |
158 #endif | 165 #endif |
159 #if defined(MECC) | 166 #if defined(MECC) |
160 " ECC\n" | 167 " ECC\n" |
161 #endif | 168 #endif |
162 #if defined(MDSA) | 169 #if defined(MDSA) |
163 " DSA\n" | 170 " DSA\n" |
164 #endif | |
165 #if defined(KR) | |
166 " KR\n" | |
167 #endif | 171 #endif |
168 | 172 |
169 "\nCompiler:\n" | 173 "\nCompiler:\n" |
170 #if defined(WIN32) | 174 #if defined(WIN32) |
171 " WIN32 platform detected.\n" | 175 " WIN32 platform detected.\n" |
185 #if defined(INTEL_CC) | 189 #if defined(INTEL_CC) |
186 " Intel C Compiler detected.\n" | 190 " Intel C Compiler detected.\n" |
187 #endif | 191 #endif |
188 | 192 |
189 "\nVarious others: " | 193 "\nVarious others: " |
190 #if defined(GF) | |
191 " GF " | |
192 #endif | |
193 #if defined(BASE64) | 194 #if defined(BASE64) |
194 " BASE64 " | 195 " BASE64 " |
195 #endif | 196 #endif |
196 #if defined(MPI) | 197 #if defined(MPI) |
197 " MPI " | 198 " MPI " |
220 #if defined(PKCS_1) | 221 #if defined(PKCS_1) |
221 " PKCS#1 " | 222 " PKCS#1 " |
222 #endif | 223 #endif |
223 #if defined(PKCS_5) | 224 #if defined(PKCS_5) |
224 " PKCS#5 " | 225 " PKCS#5 " |
226 #endif | |
227 #if defined(SMALL_CODE) | |
228 " SMALL_CODE " | |
229 #endif | |
230 #if defined(NO_FILE) | |
231 " NO_FILE " | |
232 #endif | |
233 #if defined(LTC_TEST) | |
234 " LTC_TEST " | |
225 #endif | 235 #endif |
226 "\n" | 236 "\n" |
227 "\n\n\n" | 237 "\n\n\n" |
228 ; | 238 ; |
229 | 239 |