Change functions to ANSI C.
[openssl.git] / crypto / rsa / rsa_none.c
index e944f84bec39c6b9146b539b27329314c3ac207f..6d43677a1539141ec049149393b5f9a1857e388b 100644 (file)
 #include "rsa.h"
 #include "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)