]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/idea/i_ofb64.c
Rename some lowercase API's
[thirdparty/openssl.git] / crypto / idea / i_ofb64.c
index 64f128eff485ca45d38ac5ce589759ee3ccb199e..174f6354d615d8ded1beab25736740466e0e79f5 100644 (file)
@@ -63,7 +63,7 @@
  * The extra state information to record how much of the 64bit block we have
  * used is contained in *num;
  */
-void idea_ofb64_encrypt(const unsigned char *in, unsigned char *out,
+void IDEA_ofb64_encrypt(const unsigned char *in, unsigned char *out,
                         long length, IDEA_KEY_SCHEDULE *schedule,
                         unsigned char *ivec, int *num)
 {
@@ -86,7 +86,7 @@ void idea_ofb64_encrypt(const unsigned char *in, unsigned char *out,
     l2n(v1, dp);
     while (l--) {
         if (n == 0) {
-            idea_encrypt((unsigned long *)ti, schedule);
+            IDEA_encrypt((unsigned long *)ti, schedule);
             dp = (char *)d;
             t = ti[0];
             l2n(t, dp);