summaryrefslogtreecommitdiff
path: root/ssh-dss.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 04:07:12 +0000
commitb4c774cf8878d9100fde92ff4e938671c3b0301b (patch)
treea2dff9a498a7c4cdeddace98c2c34c7a2e3689fb /ssh-dss.h
parent16ae3d0dba5f81e5602798b915105284033dea75 (diff)
- itojun@cvs.openbsd.org 2001/06/26 06:33:07
[servconf.h serverloop.h session.h sftp-client.h sftp-common.h sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h] prototype pedant. not very creative... - () -> (void) - no variable names
Diffstat (limited to 'ssh-dss.h')
-rw-r--r--ssh-dss.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/ssh-dss.h b/ssh-dss.h
index 0e6a20a59..fe7e3207c 100644
--- a/ssh-dss.h
+++ b/ssh-dss.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-dss.h,v 1.3 2001/01/29 01:58:18 niklas Exp $ */ 1/* $OpenBSD: ssh-dss.h,v 1.4 2001/06/26 06:33:02 itojun Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -26,16 +26,8 @@
26#ifndef DSA_H 26#ifndef DSA_H
27#define DSA_H 27#define DSA_H
28 28
29int 29int ssh_dss_sign(Key *, u_char **, int *, u_char *, int);
30ssh_dss_sign(
31 Key *key,
32 u_char **sigp, int *lenp,
33 u_char *data, int datalen);
34 30
35int 31int ssh_dss_verify(Key *, u_char *, int, u_char *, int);
36ssh_dss_verify(
37 Key *key,
38 u_char *signature, int signaturelen,
39 u_char *data, int datalen);
40 32
41#endif 33#endif