Delete an unused variable and make the PKCS#12 keygen debugging code work

again.
This commit is contained in:
Dr. Stephen Henson 1999-12-15 02:36:48 +00:00
parent 3fc9635ea7
commit 1887988497
2 changed files with 10 additions and 12 deletions

View File

@ -104,13 +104,12 @@ int PKCS12_key_gen_uni (unsigned char *pass, int passlen, unsigned char *salt,
#ifdef DEBUG_KEYGEN #ifdef DEBUG_KEYGEN
unsigned char *tmpout = out; unsigned char *tmpout = out;
int tmpn = n; int tmpn = n;
BIO_printf (bio_err, "KEYGEN DEBUG\n"); fprintf(stderr, "KEYGEN DEBUG\n");
BIO_printf (bio_err, "ID %d, ITER %d\n", id, iter); fprintf(stderr, "ID %d, ITER %d\n", id, iter);
BIO_printf (bio_err, "Password (length %d):\n", passlen); fprintf(stderr, "Password (length %d):\n", passlen);
h__dump (pass, passlen); h__dump(pass, passlen);
BIO_printf (bio_err, "Salt (length %d):\n", saltlen); fprintf(stderr, "Salt (length %d):\n", saltlen);
h__dump (salt, saltlen); h__dump(salt, saltlen);
BIO_printf (bio_err, "ID %d, ITER %d\n\n", id, iter);
#endif #endif
v = EVP_MD_block_size (md_type); v = EVP_MD_block_size (md_type);
u = EVP_MD_size (md_type); u = EVP_MD_size (md_type);
@ -150,8 +149,8 @@ int PKCS12_key_gen_uni (unsigned char *pass, int passlen, unsigned char *salt,
BN_free (Ij); BN_free (Ij);
BN_free (Bpl1); BN_free (Bpl1);
#ifdef DEBUG_KEYGEN #ifdef DEBUG_KEYGEN
BIO_printf (bio_err, "Output KEY (length %d)\n", tmpn); fprintf(stderr, "Output KEY (length %d)\n", tmpn);
h__dump (tmpout, tmpn); h__dump(tmpout, tmpn);
#endif #endif
return 1; return 1;
} }
@ -176,7 +175,7 @@ int PKCS12_key_gen_uni (unsigned char *pass, int passlen, unsigned char *salt,
#ifdef DEBUG_KEYGEN #ifdef DEBUG_KEYGEN
void h__dump (unsigned char *p, int len) void h__dump (unsigned char *p, int len)
{ {
for (; len --; p++) BIO_printf (bio_err, "%02X", *p); for (; len --; p++) fprintf(stderr, "%02X", *p);
BIO_printf (bio_err, "\n"); fprintf(stderr, "\n");
} }
#endif #endif

View File

@ -329,7 +329,6 @@ PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, EVP_CIPHER *cipher,
BIO *p7bio = NULL; BIO *p7bio = NULL;
int i; int i;
X509 *x509; X509 *x509;
char inbuf[4096];
static char txthdr[] = "Content-type: text/plain\r\n\r\n"; static char txthdr[] = "Content-type: text/plain\r\n\r\n";
if(!(p7 = PKCS7_new())) { if(!(p7 = PKCS7_new())) {
PKCS7err(PKCS7_F_PKCS7_ENCRYPT,ERR_R_MALLOC_FAILURE); PKCS7err(PKCS7_F_PKCS7_ENCRYPT,ERR_R_MALLOC_FAILURE);