]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blob - be_ssh.c
Add support for HMAC-SHA-256 as an SSH-2 MAC algorithm ("hmac-sha2-256")
[PuTTY_svn.git] / be_ssh.c
1 /*
2  * Linking module for programs that are restricted to only using SSH
3  * (pscp and psftp). These do not support selection of backend, but
4  * must still have a backends[] array mentioning SSH because
5  * settings.c will want to consult it during session load.
6  */
7
8 #include <stdio.h>
9 #include "putty.h"
10
11 const int be_default_protocol = PROT_SSH;
12
13 Backend *backends[] = {
14     &ssh_backend,
15     NULL
16 };