mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
840043f06e
This provides a convenient hook to be called between SSH messages, for the crypto components to do any per-message processing like incrementing a sequence number.
12 lines
213 B
C
12 lines
213 B
C
/*
|
|
* Implementation of shared trivial routines that ssh2_mac
|
|
* implementations might use.
|
|
*/
|
|
|
|
#include "ssh.h"
|
|
|
|
void nullmac_next_message(ssh2_mac *m)
|
|
{
|
|
/* Most MACs don't do anything at all with this */
|
|
}
|