null-cipher.c 228 B

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