In EC_KEY_set_public_key_affine_coordinates include explicit check to see passed...
[openssl.git] / crypto / des / ofb_enc.c
index 715ecb291f4adc79ada739828f7c66e78d74890b..8ce7aba5c6ba2331e74a683f2d17c9a6b589a718 100644 (file)
@@ -56,6 +56,7 @@
  * [including the GNU Public Licence.]
  */
 
+#include <openssl/crypto.h>
 #include "des_locl.h"
 
 /* The input and output are loaded in multiples of 8 bits.
@@ -64,9 +65,9 @@
  * the second.  The second 12 bits will come from the 3rd and half the 4th
  * byte.
  */
-void des_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
-                    long length, des_key_schedule *schedule,
-                    des_cblock *ivec)
+void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
+                    long length, DES_key_schedule *schedule,
+                    DES_cblock *ivec)
        {
        register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8;
        register DES_LONG mask0,mask1;
@@ -102,7 +103,7 @@ void des_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
                {
                ti[0]=v0;
                ti[1]=v1;
-               des_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT);
+               DES_encrypt1((DES_LONG *)ti,schedule,DES_ENCRYPT);
                vv0=ti[0];
                vv1=ti[1];
                c2ln(in,d0,d1,n);