mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-29 01:03:57 +03:00
chacha: use a cipher cleanup callback
With this change there is less code specific to the chacha20-poly1305 cipher found in src/wrapper.c. Signed-off-by: Jon Simons <jon@jonsimons.org> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
committed by
Andreas Schneider
parent
7a2624dee4
commit
d4a4ce4d44
@@ -128,9 +128,6 @@ void ssh_cipher_clear(struct ssh_cipher_struct *cipher){
|
||||
if (cipher->cleanup != NULL) {
|
||||
cipher->cleanup(cipher);
|
||||
}
|
||||
if (cipher->chacha20_schedule != NULL){
|
||||
SAFE_FREE(cipher->chacha20_schedule);
|
||||
}
|
||||
}
|
||||
|
||||
static void cipher_free(struct ssh_cipher_struct *cipher) {
|
||||
|
||||
Reference in New Issue
Block a user