Rerun util/openssl-format-source -v -c .
Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
@@ -115,6 +115,7 @@ IMPLEMENT_ASN1_FUNCTIONS(X509_REVOKED)
|
|||||||
IMPLEMENT_ASN1_FUNCTIONS(X509_CRL_INFO)
|
IMPLEMENT_ASN1_FUNCTIONS(X509_CRL_INFO)
|
||||||
|
|
||||||
IMPLEMENT_ASN1_FUNCTIONS(X509_CRL)
|
IMPLEMENT_ASN1_FUNCTIONS(X509_CRL)
|
||||||
|
|
||||||
IMPLEMENT_ASN1_DUP_FUNCTION(X509_CRL)
|
IMPLEMENT_ASN1_DUP_FUNCTION(X509_CRL)
|
||||||
|
|
||||||
static int X509_REVOKED_cmp(const X509_REVOKED *const *a,
|
static int X509_REVOKED_cmp(const X509_REVOKED *const *a,
|
||||||
@@ -143,4 +144,5 @@ IMPLEMENT_STACK_OF(X509_REVOKED)
|
|||||||
IMPLEMENT_ASN1_SET_OF(X509_REVOKED)
|
IMPLEMENT_ASN1_SET_OF(X509_REVOKED)
|
||||||
|
|
||||||
IMPLEMENT_STACK_OF(X509_CRL)
|
IMPLEMENT_STACK_OF(X509_CRL)
|
||||||
|
|
||||||
IMPLEMENT_ASN1_SET_OF(X509_CRL)
|
IMPLEMENT_ASN1_SET_OF(X509_CRL)
|
||||||
|
|||||||
@@ -195,8 +195,7 @@ static int MS_CALLBACK file_read(BIO *b, char *out, int outl)
|
|||||||
else
|
else
|
||||||
ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
|
ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
|
||||||
if (ret == 0
|
if (ret == 0
|
||||||
&& (b->
|
&& (b->flags & BIO_FLAGS_UPLINK) ? UP_ferror((FILE *)b->ptr) :
|
||||||
flags & BIO_FLAGS_UPLINK) ? UP_ferror((FILE *)b->ptr) :
|
|
||||||
ferror((FILE *)b->ptr)) {
|
ferror((FILE *)b->ptr)) {
|
||||||
SYSerr(SYS_F_FREAD, get_last_sys_error());
|
SYSerr(SYS_F_FREAD, get_last_sys_error());
|
||||||
BIOerr(BIO_F_FILE_READ, ERR_R_SYS_LIB);
|
BIOerr(BIO_F_FILE_READ, ERR_R_SYS_LIB);
|
||||||
|
|||||||
@@ -1650,9 +1650,8 @@ int ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num,
|
|||||||
|
|
||||||
for (i = 1; i < num; i++) {
|
for (i = 1; i < num; i++) {
|
||||||
if (!BN_is_zero(&points[i]->Z)) {
|
if (!BN_is_zero(&points[i]->Z)) {
|
||||||
if (!group->
|
if (!group->meth->field_mul(group, prod_Z[i], prod_Z[i - 1],
|
||||||
meth->field_mul(group, prod_Z[i], prod_Z[i - 1],
|
&points[i]->Z, ctx))
|
||||||
&points[i]->Z, ctx))
|
|
||||||
goto err;
|
goto err;
|
||||||
} else {
|
} else {
|
||||||
if (!BN_copy(prod_Z[i], prod_Z[i - 1]))
|
if (!BN_copy(prod_Z[i], prod_Z[i - 1]))
|
||||||
|
|||||||
@@ -573,7 +573,9 @@ pushfd cld mov esi, ecx mov edi, ecx mov ecx, 60 up:lodsd
|
|||||||
# if defined(NID_aes_256_ofb128) && ! defined (NID_aes_256_ofb)
|
# if defined(NID_aes_256_ofb128) && ! defined (NID_aes_256_ofb)
|
||||||
# define NID_aes_256_ofb NID_aes_256_ofb128
|
# define NID_aes_256_ofb NID_aes_256_ofb128
|
||||||
# endif
|
# endif
|
||||||
/* List of supported ciphers. */ static int padlock_cipher_nids[] = {
|
/*
|
||||||
|
* List of supported ciphers.
|
||||||
|
*/ static int padlock_cipher_nids[] = {
|
||||||
NID_aes_128_ecb,
|
NID_aes_128_ecb,
|
||||||
NID_aes_128_cbc,
|
NID_aes_128_cbc,
|
||||||
NID_aes_128_cfb,
|
NID_aes_128_cfb,
|
||||||
|
|||||||
@@ -840,9 +840,8 @@ static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
|
|||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
if (rsa->e && rsa->n) {
|
if (rsa->e && rsa->n) {
|
||||||
if (!rsa->
|
if (!rsa->meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx,
|
||||||
meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx,
|
rsa->_method_mod_n))
|
||||||
rsa->_method_mod_n))
|
|
||||||
goto err;
|
goto err;
|
||||||
/*
|
/*
|
||||||
* If 'I' was greater than (or equal to) rsa->n, the operation will
|
* If 'I' was greater than (or equal to) rsa->n, the operation will
|
||||||
|
|||||||
@@ -850,9 +850,8 @@ static int RSA_eay_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
|
|||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
if (rsa->e && rsa->n) {
|
if (rsa->e && rsa->n) {
|
||||||
if (!rsa->
|
if (!rsa->meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx,
|
||||||
meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx,
|
rsa->_method_mod_n))
|
||||||
rsa->_method_mod_n))
|
|
||||||
goto err;
|
goto err;
|
||||||
/*
|
/*
|
||||||
* If 'I' was greater than (or equal to) rsa->n, the operation will
|
* If 'I' was greater than (or equal to) rsa->n, the operation will
|
||||||
|
|||||||
@@ -380,8 +380,7 @@ int dtls1_accept(SSL *s)
|
|||||||
|| ((l & SSL_kRSA)
|
|| ((l & SSL_kRSA)
|
||||||
&& (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
|
&& (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
|
||||||
|| (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
|
|| (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
|
||||||
&& EVP_PKEY_size(s->cert->
|
&& EVP_PKEY_size(s->cert->pkeys
|
||||||
pkeys
|
|
||||||
[SSL_PKEY_RSA_ENC].privatekey) *
|
[SSL_PKEY_RSA_ENC].privatekey) *
|
||||||
8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
|
8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -482,8 +482,7 @@ static int get_client_master_key(SSL *s)
|
|||||||
if ((i < 0) || ((!is_export && (i != EVP_CIPHER_key_length(c)))
|
if ((i < 0) || ((!is_export && (i != EVP_CIPHER_key_length(c)))
|
||||||
|| (is_export && ((i != ek)
|
|| (is_export && ((i != ek)
|
||||||
|| (s->s2->tmp.clear +
|
|| (s->s2->tmp.clear +
|
||||||
(unsigned int)i !=
|
(unsigned int)i != (unsigned int)
|
||||||
(unsigned int)
|
|
||||||
EVP_CIPHER_key_length(c)))))) {
|
EVP_CIPHER_key_length(c)))))) {
|
||||||
ERR_clear_error();
|
ERR_clear_error();
|
||||||
if (is_export)
|
if (is_export)
|
||||||
|
|||||||
@@ -365,8 +365,7 @@ int ssl3_accept(SSL *s)
|
|||||||
|| ((l & SSL_kRSA)
|
|| ((l & SSL_kRSA)
|
||||||
&& (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
|
&& (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
|
||||||
|| (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
|
|| (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
|
||||||
&& EVP_PKEY_size(s->cert->
|
&& EVP_PKEY_size(s->cert->pkeys
|
||||||
pkeys
|
|
||||||
[SSL_PKEY_RSA_ENC].privatekey) *
|
[SSL_PKEY_RSA_ENC].privatekey) *
|
||||||
8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
|
8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -318,8 +318,7 @@ int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len,
|
|||||||
} else if (r == 0 || (!ret && !len))
|
} else if (r == 0 || (!ret && !len))
|
||||||
goto err;
|
goto err;
|
||||||
else if (!ret
|
else if (!ret
|
||||||
&& !(s->
|
&& !(s->session_ctx->session_cache_mode &
|
||||||
session_ctx->session_cache_mode &
|
|
||||||
SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
|
SSL_SESS_CACHE_NO_INTERNAL_LOOKUP))
|
||||||
#else
|
#else
|
||||||
if (len == 0)
|
if (len == 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user