diff options
Diffstat (limited to 'crypto/openssh/dsa.h')
-rw-r--r-- | crypto/openssh/dsa.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/crypto/openssh/dsa.h b/crypto/openssh/dsa.h new file mode 100644 index 000000000000..3cece7c1f22b --- /dev/null +++ b/crypto/openssh/dsa.h @@ -0,0 +1,22 @@ +#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 |