Deleted Added
full compact
dsa.c (194206) dsa.c (205128)
1/* apps/dsa.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 51 unchanged lines hidden (view full) ---

60#ifndef OPENSSL_NO_DSA
61#include <stdio.h>
62#include <stdlib.h>
63#include <string.h>
64#include <time.h>
65#include "apps.h"
66#include <openssl/bio.h>
67#include <openssl/err.h>
1/* apps/dsa.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 51 unchanged lines hidden (view full) ---

60#ifndef OPENSSL_NO_DSA
61#include <stdio.h>
62#include <stdlib.h>
63#include <string.h>
64#include <time.h>
65#include "apps.h"
66#include <openssl/bio.h>
67#include <openssl/err.h>
68#include <openssl/dsa.h>
69#include <openssl/evp.h>
70#include <openssl/x509.h>
71#include <openssl/pem.h>
72#include <openssl/bn.h>
68#include <openssl/evp.h>
69#include <openssl/x509.h>
70#include <openssl/pem.h>
71#include <openssl/bn.h>
72#include <openssl/dsa.h>
73
74#undef PROG
75#define PROG dsa_main
76
77/* -inform arg - input format - default PEM (one of DER, NET or PEM)
78 * -outform arg - output format - default PEM
79 * -in arg - input file - default stdin
80 * -out arg - output file - default stdout

--- 253 unchanged lines hidden ---
73
74#undef PROG
75#define PROG dsa_main
76
77/* -inform arg - input format - default PEM (one of DER, NET or PEM)
78 * -outform arg - output format - default PEM
79 * -in arg - input file - default stdin
80 * -out arg - output file - default stdout

--- 253 unchanged lines hidden ---