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.
13 lines
260 B
13 lines
260 B
13 years ago
|
#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
|