[openssl] OpenSSL_1_1_1-stable update
tomas at openssl.org
tomas at openssl.org
Wed Aug 25 15:27:19 UTC 2021
The branch OpenSSL_1_1_1-stable has been updated
via 18622c7625436d7f99c0f51895c4d3cea233c62e (commit)
from cf2b1d6f11aa7ec4aa909ff1ecb9bee6892285d9 (commit)
- Log -----------------------------------------------------------------
commit 18622c7625436d7f99c0f51895c4d3cea233c62e
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Sun Aug 22 21:28:51 2021 +0200
Fix some strict gcc-12 warnings
Reviewed-by: Paul Dale <pauli at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16375)
-----------------------------------------------------------------------
Summary of changes:
crypto/ec/curve448/field.h | 2 +-
ssl/s3_cbc.c | 2 +-
ssl/ssl_local.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/crypto/ec/curve448/field.h b/crypto/ec/curve448/field.h
index ccd04482d2..4ce263d436 100644
--- a/crypto/ec/curve448/field.h
+++ b/crypto/ec/curve448/field.h
@@ -62,7 +62,7 @@ mask_t gf_eq(const gf x, const gf y);
mask_t gf_lobit(const gf x);
mask_t gf_hibit(const gf x);
-void gf_serialize(uint8_t *serial, const gf x, int with_highbit);
+void gf_serialize(uint8_t serial[SER_BYTES], const gf x, int with_highbit);
mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit,
uint8_t hi_nmask);
diff --git a/ssl/s3_cbc.c b/ssl/s3_cbc.c
index aa7d63f84a..ae2a330ba5 100644
--- a/ssl/s3_cbc.c
+++ b/ssl/s3_cbc.c
@@ -128,7 +128,7 @@ char ssl3_cbc_record_digest_supported(const EVP_MD_CTX *ctx)
int ssl3_cbc_digest_record(const EVP_MD_CTX *ctx,
unsigned char *md_out,
size_t *md_out_size,
- const unsigned char header[13],
+ const unsigned char *header,
const unsigned char *data,
size_t data_plus_mac_size,
size_t data_plus_mac_plus_padding_size,
diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h
index f92472117a..9f346e30e8 100644
--- a/ssl/ssl_local.h
+++ b/ssl/ssl_local.h
@@ -2622,7 +2622,7 @@ __owur char ssl3_cbc_record_digest_supported(const EVP_MD_CTX *ctx);
__owur int ssl3_cbc_digest_record(const EVP_MD_CTX *ctx,
unsigned char *md_out,
size_t *md_out_size,
- const unsigned char header[13],
+ const unsigned char *header,
const unsigned char *data,
size_t data_plus_mac_size,
size_t data_plus_mac_plus_padding_size,
More information about the openssl-commits
mailing list