From 25ef6a233aa1291134987500a23323aa35f44e70 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Sun, 11 Sep 2022 22:17:46 +0100 Subject: [PATCH] Remove a stray FIXME, added in 840043f06e. Simon tells me he was pondering whether chacha20-poly1305 could be reworked to use the new facilities, but on reflection there's no way to use it to improve matters. --- crypto/chacha20-poly1305.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/chacha20-poly1305.c b/crypto/chacha20-poly1305.c index d765e7fc..4216a64d 100644 --- a/crypto/chacha20-poly1305.c +++ b/crypto/chacha20-poly1305.c @@ -1062,7 +1062,7 @@ const ssh_cipheralg ssh2_chacha20_poly1305 = { .decrypt = ccp_decrypt, .encrypt_length = ccp_encrypt_length, .decrypt_length = ccp_decrypt_length, - .next_message = nullcipher_next_message, // FIXME: can we use this? + .next_message = nullcipher_next_message, .ssh2_id = "chacha20-poly1305@openssh.com", .blksize = 1, .real_keybits = 512,