"print" is GNU bc specific.
[oweals/openssl.git] / crypto / rsa / rsa_none.c
index e944f84bec39c6b9146b539b27329314c3ac207f..f22fce5016efd913d69afec5e8101803f532bd81 100644 (file)
 
 #include <stdio.h>
 #include "cryptlib.h"
-#include "bn.h"
-#include "rsa.h"
-#include "rand.h"
+#include <openssl/bn.h>
+#include <openssl/rsa.h>
+#include <openssl/rand.h>
 
-int RSA_padding_add_none(to,tlen,from,flen)
-unsigned char *to;
-int tlen;
-unsigned char *from;
-int flen;
+int RSA_padding_add_none(unsigned char *to, int tlen, unsigned char *from,
+            int flen)
        {
        if (flen > tlen)
                {
@@ -84,12 +81,8 @@ int flen;
        return(1);
        }
 
-int RSA_padding_check_none(to,tlen,from,flen,num)
-unsigned char *to;
-int tlen;
-unsigned char *from;
-int flen;
-int num;
+int RSA_padding_check_none(unsigned char *to, int tlen, unsigned char *from,
+            int flen, int num)
        {
 
        if (flen > tlen)