summaryrefslogtreecommitdiff
path: root/src/skey/skey.h
blob: 04756295bf87bc388efe1a5a9d5972c6b63acbed (plain)
1
2
3
4
5
6
7
8
9
10
typedef enum {
  MD4,
  MD5,
  SHA1
} SKeyAlgorithm;

#define SKEY_SIZE	8

char *skey(SKeyAlgorithm algorithm, int seq, const char *seed, const char *passhrase);