Welcome to mirror list, hosted at ThFree Co, Russian Federation.

null-cipher.c « stubs - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e11c7bbcd315b0df10c9c7488ba1fbf00c00eaff (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * 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 */
}