summaryrefslogtreecommitdiffstats
path: root/libvncserver/rfbcrypto.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvncserver/rfbcrypto.h')
-rw-r--r--libvncserver/rfbcrypto.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libvncserver/rfbcrypto.h b/libvncserver/rfbcrypto.h
new file mode 100644
index 0000000..9dc3e63
--- /dev/null
+++ b/libvncserver/rfbcrypto.h
@@ -0,0 +1,12 @@
+#ifndef _RFB_CRYPTO_H
+#define _RFB_CRYPTO_H 1
+
+#include <sys/uio.h>
+
+#define SHA1_HASH_SIZE 20
+#define MD5_HASH_SIZE 16
+
+void digestmd5(const struct iovec *iov, int iovcnt, void *dest);
+void digestsha1(const struct iovec *iov, int iovcnt, void *dest);
+
+#endif