From ef02e524dfc5110cb3aecfe018df9e5d465de77c Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Wed, 5 May 2021 10:03:00 -0700 Subject: [PATCH] packet: Change the last argument of ssh_packet_encrypt to uint32_t to match the implemntation in packet_crypt.c Signed-off-by: Xiang Xiao Reviewed-by: Jakub Jelen Change-Id: Ib76c3585f67dae22ed0f1dfc10dadcd03c762032 --- include/libssh/packet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libssh/packet.h b/include/libssh/packet.h index 8fc7ce42..561bba8e 100644 --- a/include/libssh/packet.h +++ b/include/libssh/packet.h @@ -80,7 +80,7 @@ int ssh_packet_decrypt(ssh_session session, uint8_t *destination, uint8_t *sourc size_t start, size_t encrypted_size); unsigned char *ssh_packet_encrypt(ssh_session session, void *packet, - unsigned int len); + uint32_t len); int ssh_packet_hmac_verify(ssh_session session, const void *data, size_t len, unsigned char *mac, enum ssh_hmac_e type); int ssh_packet_set_newkeys(ssh_session session,