=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/ssh-dss.h,v retrieving revision 1.3 retrieving revision 1.3.2.5 diff -u -r1.3 -r1.3.2.5 --- src/usr.bin/ssh/Attic/ssh-dss.h 2001/01/29 01:58:18 1.3 +++ src/usr.bin/ssh/Attic/ssh-dss.h 2001/09/27 00:15:42 1.3.2.5 @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-dss.h,v 1.3 2001/01/29 01:58:18 niklas Exp $ */ +/* $OpenBSD: ssh-dss.h,v 1.3.2.5 2001/09/27 00:15:42 miod Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -26,16 +26,7 @@ #ifndef DSA_H #define DSA_H -int -ssh_dss_sign( - Key *key, - u_char **sigp, int *lenp, - u_char *data, int datalen); - -int -ssh_dss_verify( - Key *key, - u_char *signature, int signaturelen, - u_char *data, int datalen); +int ssh_dss_sign(Key *, u_char **, int *, u_char *, int); +int ssh_dss_verify(Key *, u_char *, int, u_char *, int); #endif