PR: 2220
Fixes to make OpenSSL compile with no-rc4
This commit is contained in:
parent
6747de655e
commit
5b0a79a27a
@ -923,7 +923,7 @@ EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin,
|
|||||||
&pkey, NULL, NULL))
|
&pkey, NULL, NULL))
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA)
|
#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_DSA) && !defined (OPENSSL_NO_RC4)
|
||||||
else if (format == FORMAT_MSBLOB)
|
else if (format == FORMAT_MSBLOB)
|
||||||
pkey = b2i_PrivateKey_bio(key);
|
pkey = b2i_PrivateKey_bio(key);
|
||||||
else if (format == FORMAT_PVK)
|
else if (format == FORMAT_PVK)
|
||||||
|
@ -334,7 +334,7 @@ bad:
|
|||||||
i=PEM_write_bio_DSA_PUBKEY(out,dsa);
|
i=PEM_write_bio_DSA_PUBKEY(out,dsa);
|
||||||
else i=PEM_write_bio_DSAPrivateKey(out,dsa,enc,
|
else i=PEM_write_bio_DSAPrivateKey(out,dsa,enc,
|
||||||
NULL,0,NULL, passout);
|
NULL,0,NULL, passout);
|
||||||
#ifndef OPENSSL_NO_RSA
|
#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_NO_RC4)
|
||||||
} else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
|
} else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
|
||||||
EVP_PKEY *pk;
|
EVP_PKEY *pk;
|
||||||
pk = EVP_PKEY_new();
|
pk = EVP_PKEY_new();
|
||||||
|
@ -409,7 +409,7 @@ bad:
|
|||||||
}
|
}
|
||||||
else i=PEM_write_bio_RSAPrivateKey(out,rsa,
|
else i=PEM_write_bio_RSAPrivateKey(out,rsa,
|
||||||
enc,NULL,0,NULL,passout);
|
enc,NULL,0,NULL,passout);
|
||||||
#ifndef OPENSSL_NO_DSA
|
#if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
|
||||||
} else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
|
} else if (outformat == FORMAT_MSBLOB || outformat == FORMAT_PVK) {
|
||||||
EVP_PKEY *pk;
|
EVP_PKEY *pk;
|
||||||
pk = EVP_PKEY_new();
|
pk = EVP_PKEY_new();
|
||||||
|
@ -548,10 +548,11 @@ EVP_PKEY *b2i_PrivateKey_bio(BIO *in);
|
|||||||
EVP_PKEY *b2i_PublicKey_bio(BIO *in);
|
EVP_PKEY *b2i_PublicKey_bio(BIO *in);
|
||||||
int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk);
|
int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk);
|
||||||
int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk);
|
int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk);
|
||||||
|
#ifndef OPENSSL_NO_RC4
|
||||||
EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
|
EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
|
||||||
int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel,
|
int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel,
|
||||||
pem_password_cb *cb, void *u);
|
pem_password_cb *cb, void *u);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* BEGIN ERROR CODES */
|
/* BEGIN ERROR CODES */
|
||||||
|
@ -654,6 +654,8 @@ int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk)
|
|||||||
return do_i2b_bio(out, pk, 1);
|
return do_i2b_bio(out, pk, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef OPENSSL_NO_RC4
|
||||||
|
|
||||||
static int do_PVK_header(const unsigned char **in, unsigned int length,
|
static int do_PVK_header(const unsigned char **in, unsigned int length,
|
||||||
int skip_magic,
|
int skip_magic,
|
||||||
unsigned int *psaltlen, unsigned int *pkeylen)
|
unsigned int *psaltlen, unsigned int *pkeylen)
|
||||||
@ -934,4 +936,7 @@ int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel,
|
|||||||
}
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -3861,10 +3861,10 @@ EVP_PKEY_meth_set_sign 4243 EXIST::FUNCTION:
|
|||||||
CRYPTO_THREADID_current 4244 EXIST::FUNCTION:
|
CRYPTO_THREADID_current 4244 EXIST::FUNCTION:
|
||||||
EVP_PKEY_decrypt_init 4245 EXIST::FUNCTION:
|
EVP_PKEY_decrypt_init 4245 EXIST::FUNCTION:
|
||||||
NETSCAPE_X509_free 4246 EXIST::FUNCTION:
|
NETSCAPE_X509_free 4246 EXIST::FUNCTION:
|
||||||
i2b_PVK_bio 4247 EXIST::FUNCTION:
|
i2b_PVK_bio 4247 EXIST::FUNCTION:RC4
|
||||||
EVP_PKEY_print_private 4248 EXIST::FUNCTION:
|
EVP_PKEY_print_private 4248 EXIST::FUNCTION:
|
||||||
GENERAL_NAME_get0_value 4249 EXIST::FUNCTION:
|
GENERAL_NAME_get0_value 4249 EXIST::FUNCTION:
|
||||||
b2i_PVK_bio 4250 EXIST::FUNCTION:
|
b2i_PVK_bio 4250 EXIST::FUNCTION:RC4
|
||||||
ASN1_UTCTIME_adj 4251 EXIST::FUNCTION:
|
ASN1_UTCTIME_adj 4251 EXIST::FUNCTION:
|
||||||
TS_TST_INFO_new 4252 EXIST::FUNCTION:
|
TS_TST_INFO_new 4252 EXIST::FUNCTION:
|
||||||
EVP_MD_do_all_sorted 4253 EXIST::FUNCTION:
|
EVP_MD_do_all_sorted 4253 EXIST::FUNCTION:
|
||||||
|
Loading…
Reference in New Issue
Block a user