X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=apps%2Fdsa.c;h=dc282b77d0ff722667afede4bb9922239d4aab90;hp=f58ff35c7feb00a78567e87dea2359b56bdb832d;hb=ec577822f95a8bca0023c5c77cef1a4916822d4a;hpb=9fe84296a437312d5ab634f89087ff1a02c86db5 diff --git a/apps/dsa.c b/apps/dsa.c index f58ff35c7f..dc282b77d0 100644 --- a/apps/dsa.c +++ b/apps/dsa.c @@ -61,12 +61,12 @@ #include #include #include "apps.h" -#include "bio.h" -#include "err.h" -#include "dsa.h" -#include "evp.h" -#include "x509.h" -#include "pem.h" +#include +#include +#include +#include +#include +#include #undef PROG #define PROG dsa_main @@ -82,14 +82,12 @@ * -modulus - print the DSA public key */ -int MAIN(argc, argv) -int argc; -char **argv; +int MAIN(int argc, char **argv) { int ret=1; DSA *dsa=NULL; int i,badops=0; - EVP_CIPHER *enc=NULL; + const EVP_CIPHER *enc=NULL; BIO *in=NULL,*out=NULL; int informat,outformat,text=0,noout=0; char *infile,*outfile,*prog;