aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libcrypto.c8
-rw-r--r--src/libmbedcrypto.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/libcrypto.c b/src/libcrypto.c
index d578903f..ca8b5564 100644
--- a/src/libcrypto.c
+++ b/src/libcrypto.c
@@ -543,7 +543,7 @@ static int evp_cipher_set_encrypt_key(struct ssh_cipher_struct *cipher,
rc = EVP_CIPHER_CTX_ctrl(cipher->ctx,
EVP_CTRL_GCM_SET_IV_FIXED,
-1,
- (u_char *)IV);
+ (uint8_t *)IV);
if (rc != 1) {
SSH_LOG(SSH_LOG_WARNING, "EVP_CTRL_GCM_SET_IV_FIXED failed");
return SSH_ERROR;
@@ -576,7 +576,7 @@ static int evp_cipher_set_decrypt_key(struct ssh_cipher_struct *cipher,
rc = EVP_CIPHER_CTX_ctrl(cipher->ctx,
EVP_CTRL_GCM_SET_IV_FIXED,
-1,
- (u_char *)IV);
+ (uint8_t *)IV);
if (rc != 1) {
SSH_LOG(SSH_LOG_WARNING, "EVP_CTRL_GCM_SET_IV_FIXED failed");
return SSH_ERROR;
@@ -728,7 +728,7 @@ evp_cipher_aead_encrypt(struct ssh_cipher_struct *cipher,
uint64_t seq)
{
size_t authlen, aadlen;
- u_char lastiv[1];
+ uint8_t lastiv[1];
int tmplen = 0;
size_t outlen;
int rc;
@@ -800,7 +800,7 @@ evp_cipher_aead_decrypt(struct ssh_cipher_struct *cipher,
uint64_t seq)
{
size_t authlen, aadlen;
- u_char lastiv[1];
+ uint8_t lastiv[1];
int outlen = 0;
int rc = 0;
diff --git a/src/libmbedcrypto.c b/src/libmbedcrypto.c
index d5945c27..b6a0379e 100644
--- a/src/libmbedcrypto.c
+++ b/src/libmbedcrypto.c
@@ -925,9 +925,9 @@ cipher_decrypt_gcm(struct ssh_cipher_struct *cipher,
AES_GCM_IVLEN,
complete_packet, /* aad */
aadlen,
- (const u_char *)complete_packet + aadlen + encrypted_size, /* tag */
+ (const uint8_t *)complete_packet + aadlen + encrypted_size, /* tag */
authlen,
- (const u_char *)complete_packet + aadlen, /* input */
+ (const uint8_t *)complete_packet + aadlen, /* input */
(unsigned char *)out); /* output */
if (rc != 0) {
SSH_LOG(SSH_LOG_WARNING, "mbedtls_gcm_auth_decrypt failed");