X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fidea%2Fi_ofb64.c;h=174f6354d615d8ded1beab25736740466e0e79f5;hp=64f128eff485ca45d38ac5ce589759ee3ccb199e;hb=9021a5dfb37fd3a6f7726f07ef0f27dcb71048e2;hpb=84f4f0bdd49dd162305685d76caa194165b56635;ds=sidebyside diff --git a/crypto/idea/i_ofb64.c b/crypto/idea/i_ofb64.c index 64f128eff4..174f6354d6 100644 --- a/crypto/idea/i_ofb64.c +++ b/crypto/idea/i_ofb64.c @@ -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);