Update filenames in makefiles.
[openssl.git] / crypto / idea / i_ecb.c
index 5d5f8e032597e1ff0d8474663b6a1157e36b76f1..fb613db595c438b6df9b501d42393d17a77100e7 100644 (file)
  * [including the GNU Public Licence.]
  */
 
-#include "idea.h"
+#include <openssl/idea.h>
 #include "idea_lcl.h"
+#include <openssl/opensslv.h>
 
-char *IDEA_version="IDEA part of SSLeay 0.9.1a 06-Jul-1998";
+const char *IDEA_version="IDEA" OPENSSL_VERSION_PTEXT;
 
-char *idea_options()
+const char *idea_options(void)
        {
        if (sizeof(short) != sizeof(IDEA_INT))
                return("idea(int)");
@@ -69,10 +70,8 @@ char *idea_options()
                return("idea(short)");
        }
 
-void idea_ecb_encrypt(in, out, ks)
-unsigned char *in;
-unsigned char *out;
-IDEA_KEY_SCHEDULE *ks;
+void idea_ecb_encrypt(const unsigned char *in, unsigned char *out,
+            IDEA_KEY_SCHEDULE *ks)
        {
        unsigned long l0,l1,d[2];