aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorXiang Xiao <xiaoxiang@xiaomi.com>2021-05-05 10:03:00 -0700
committerAndreas Schneider <asn@cryptomilk.org>2021-05-27 13:45:47 +0200
commitef02e524dfc5110cb3aecfe018df9e5d465de77c (patch)
treebc1ea8babeb721d20a1e5bcc2ec7d15c25af500c /include
parent50934a542db751474ec2db6f007a8aa70e6fbdf8 (diff)
downloadlibssh-ef02e524dfc5110cb3aecfe018df9e5d465de77c.tar.gz
libssh-ef02e524dfc5110cb3aecfe018df9e5d465de77c.tar.xz
libssh-ef02e524dfc5110cb3aecfe018df9e5d465de77c.zip
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 <xiaoxiang@xiaomi.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com> Change-Id: Ib76c3585f67dae22ed0f1dfc10dadcd03c762032
Diffstat (limited to 'include')
-rw-r--r--include/libssh/packet.h2
1 files changed, 1 insertions, 1 deletions
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,