~ubuntu-branches/ubuntu/maverick/gnome-terminal/maverick-proposed

« back to all changes in this revision

Viewing changes to src/skey/skey.h

Tags: upstream-2.12.0
ImportĀ upstreamĀ versionĀ 2.12.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __SKEY_H__
2
 
#define __SKEY_H__
3
 
 
4
 
#define MD2 0
5
 
#define MD4 1
6
 
#define MD5 2
7
 
 
8
 
char *skey (int         md,
9
 
            int         seq,
10
 
            const char *seed,
11
 
            const char *password);
12
 
 
13
 
#endif
 
1
#define MD4  0
 
2
#define MD5  1
 
3
#define SHA1 2
 
4
 
 
5
#define SKEY_SIZE       8
 
6
 
 
7
char *skey(int algorithm, int seq, const char *seed, const char *passhrase);
 
8