summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-dss.h
diff options
context:
space:
mode:
authoritojun <itojun@openbsd.org>2001-06-26 06:32:46 +0000
committeritojun <itojun@openbsd.org>2001-06-26 06:32:46 +0000
commit08d1172d67ef632962039f0f9b05c55ed93331bf (patch)
treec18845a72fb322f4f7a85a8fcaea0f32044feb71 /usr.bin/ssh/ssh-dss.h
parentAppease gcc by not using void pointers in arithmetic operations; art@ ok (diff)
downloadwireguard-openbsd-08d1172d67ef632962039f0f9b05c55ed93331bf.tar.xz
wireguard-openbsd-08d1172d67ef632962039f0f9b05c55ed93331bf.zip
prototype pedant. not very creative...
- () -> (void) - no variable names
Diffstat (limited to 'usr.bin/ssh/ssh-dss.h')
-rw-r--r--usr.bin/ssh/ssh-dss.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/usr.bin/ssh/ssh-dss.h b/usr.bin/ssh/ssh-dss.h
index 0e6a20a59d9..fe7e3207c28 100644
--- a/usr.bin/ssh/ssh-dss.h
+++ b/usr.bin/ssh/ssh-dss.h
@@ -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.4 2001/06/26 06:33:02 itojun Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -26,16 +26,8 @@
#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_sign(Key *, u_char **, int *, u_char *, int);
-int
-ssh_dss_verify(
- Key *key,
- u_char *signature, int signaturelen,
- u_char *data, int datalen);
+int ssh_dss_verify(Key *, u_char *, int, u_char *, int);
#endif