mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
12 lines
228 B
C
12 lines
228 B
C
|
/*
|
||
|
* Implementation of shared trivial routines that ssh_cipher
|
||
|
* implementations might use.
|
||
|
*/
|
||
|
|
||
|
#include "ssh.h"
|
||
|
|
||
|
void nullcipher_next_message(ssh_cipher *cipher)
|
||
|
{
|
||
|
/* Most ciphers don't do anything at all with this */
|
||
|
}
|