X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fidea%2Fideatest.c;h=64b9353e414f4557858f3aa4401b44995f1bc12c;hb=4328d51d08e89cf9d46836a2875b3d545711a4d8;hp=4593d9e694d811dfbcef4b700837467d86c100b3;hpb=a9be3af5ad4836f7e50f0546311ca90c717b861e;p=oweals%2Fopenssl.git diff --git a/crypto/idea/ideatest.c b/crypto/idea/ideatest.c index 4593d9e694..64b9353e41 100644 --- a/crypto/idea/ideatest.c +++ b/crypto/idea/ideatest.c @@ -59,6 +59,14 @@ #include #include #include + +#ifdef NO_IDEA +int main(int argc, char *argv[]) +{ + printf("No IDEA support\n"); + return(0); +} +#else #include unsigned char k[16]={ @@ -219,4 +227,4 @@ static char *pt(unsigned char *p) ret[16]='\0'; return(ret); } - +#endif