null-mac.c 213 B

123456789101112
  1. /*
  2. * Implementation of shared trivial routines that ssh2_mac
  3. * implementations might use.
  4. */
  5. #include "ssh.h"
  6. void nullmac_next_message(ssh2_mac *m)
  7. {
  8. /* Most MACs don't do anything at all with this */
  9. }