diff options
Diffstat (limited to 'crypto/openssh/hmac.h')
-rw-r--r-- | crypto/openssh/hmac.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/openssh/hmac.h b/crypto/openssh/hmac.h new file mode 100644 index 0000000..fb68029 --- /dev/null +++ b/crypto/openssh/hmac.h @@ -0,0 +1,11 @@ +#ifndef HMAC_H +#define HMAC_H + +unsigned char * +hmac( + EVP_MD *evp_md, + unsigned int seqno, + unsigned char *data, int datalen, + unsigned char *key, int len); + +#endif |