summaryrefslogtreecommitdiff
path: root/ssh-rsa.h
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-rsa.h')
-rw-r--r--ssh-rsa.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/ssh-rsa.h b/ssh-rsa.h
index af2b2fe28..1e94c8b3c 100644
--- a/ssh-rsa.h
+++ b/ssh-rsa.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-rsa.h,v 1.3 2001/01/29 01:58:18 niklas Exp $ */ 1/* $OpenBSD: ssh-rsa.h,v 1.4 2001/06/26 06:33:03 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 SSH_RSA_H 26#ifndef SSH_RSA_H
27#define SSH_RSA_H 27#define SSH_RSA_H
28 28
29int 29int ssh_rsa_sign(Key *, u_char **, int *, u_char *, int);
30ssh_rsa_sign(
31 Key *key,
32 u_char **sigp, int *lenp,
33 u_char *data, int datalen);
34 30
35int 31int ssh_rsa_verify(Key *, u_char *, int, u_char *, int);
36ssh_rsa_verify(
37 Key *key,
38 u_char *signature, int signaturelen,
39 u_char *data, int datalen);
40 32
41#endif 33#endif