summaryrefslogtreecommitdiff
path: root/other/openssh-2.1.1p4/dsa.h
diff options
context:
space:
mode:
Diffstat (limited to 'other/openssh-2.1.1p4/dsa.h')
-rw-r--r--other/openssh-2.1.1p4/dsa.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/other/openssh-2.1.1p4/dsa.h b/other/openssh-2.1.1p4/dsa.h
deleted file mode 100644
index 3cece7c..0000000
--- a/other/openssh-2.1.1p4/dsa.h
+++ /dev/null
@@ -1,22 +0,0 @@
1#ifndef DSA_H
2#define DSA_H
3
4Key *dsa_key_from_blob(char *blob, int blen);
5int dsa_make_key_blob(Key *key, unsigned char **blobp, unsigned int *lenp);
6
7int
8dsa_sign(
9 Key *key,
10 unsigned char **sigp, int *lenp,
11 unsigned char *data, int datalen);
12
13int
14dsa_verify(
15 Key *key,
16 unsigned char *signature, int signaturelen,
17 unsigned char *data, int datalen);
18
19Key *
20dsa_generate_key(unsigned int bits);
21
22#endif