X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/1408a8777732536ede3b60bf21c8606af2782339..45cebe79456e8f4aed005cd233b3b400daa685d0:/sshdss.c diff --git a/sshdss.c b/sshdss.c index c561f5a6..d85d0007 100644 --- a/sshdss.c +++ b/sshdss.c @@ -315,6 +315,10 @@ static void *dss_createkey(unsigned char *pub_blob, int pub_len, return NULL; /* can't handle DSS private keys */ } +static void *dss_openssh_createkey(unsigned char **blob, int *len) { + return NULL; /* can't handle DSS private keys */ +} + unsigned char *dss_sign(void *key, char *data, int datalen, int *siglen) { return NULL; /* can't handle DSS private keys */ } @@ -326,6 +330,7 @@ const struct ssh_signkey ssh_dss = { dss_public_blob, dss_private_blob, dss_createkey, + dss_openssh_createkey, dss_fingerprint, dss_verifysig, dss_sign,