diff options
author | Damien Miller <djm@mindrot.org> | 2023-03-24 03:56:25 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2023-03-24 03:56:25 +0100 |
commit | 7280401bdd77ca54be6867a154cc01e0d72612e0 (patch) | |
tree | d9742a2d5c79b4977c5b9370efa8d135f7b54ed9 /cipher-aes.c | |
parent | Test latest OpenSSL 1.1, 3.0 and LibreSSL 3.7. (diff) | |
download | openssh-7280401bdd77ca54be6867a154cc01e0d72612e0.tar.xz openssh-7280401bdd77ca54be6867a154cc01e0d72612e0.zip |
remove support for old libcrypto
OpenSSH now requires LibreSSL 3.1.0 or greater or
OpenSSL 1.1.1 or greater
with/ok dtucker@
Diffstat (limited to 'cipher-aes.c')
-rw-r--r-- | cipher-aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher-aes.c b/cipher-aes.c index 8b1017272..87c763353 100644 --- a/cipher-aes.c +++ b/cipher-aes.c @@ -69,7 +69,7 @@ ssh_rijndael_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv, static int ssh_rijndael_cbc(EVP_CIPHER_CTX *ctx, u_char *dest, const u_char *src, - LIBCRYPTO_EVP_INL_TYPE len) + size_t len) { struct ssh_rijndael_ctx *c; u_char buf[RIJNDAEL_BLOCKSIZE]; |