diff options
Diffstat (limited to 'crypto/openssh/dsa.h')
-rw-r--r-- | crypto/openssh/dsa.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/crypto/openssh/dsa.h b/crypto/openssh/dsa.h deleted file mode 100644 index 3cece7c1f22be..0000000000000 --- a/crypto/openssh/dsa.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef DSA_H -#define DSA_H - -Key *dsa_key_from_blob(char *blob, int blen); -int dsa_make_key_blob(Key *key, unsigned char **blobp, unsigned int *lenp); - -int -dsa_sign( - Key *key, - unsigned char **sigp, int *lenp, - unsigned char *data, int datalen); - -int -dsa_verify( - Key *key, - unsigned char *signature, int signaturelen, - unsigned char *data, int datalen); - -Key * -dsa_generate_key(unsigned int bits); - -#endif |