You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libtdevnc/common/rfbcrypto.h

17 lines
330 B

#ifndef _RFB_CRYPTO_H
#define _RFB_CRYPTO_H 1
#include "rfb/rfbconfig.h"
#define SHA1_HASH_SIZE 20
#define MD5_HASH_SIZE 16
#ifdef LIBVNCSERVER_HAVE_SYS_UIO_H
#include <sys/uio.h>
void digestmd5(const struct iovec *iov, int iovcnt, void *dest);
void digestsha1(const struct iovec *iov, int iovcnt, void *dest);
#endif
#endif