ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/global.h
(Generate patch)

Comparing gvpe/src/global.h (file contents):
Revision 1.27 by root, Tue Jul 16 16:44:36 2013 UTC vs.
Revision 1.34 by root, Thu Jan 29 00:21:39 2015 UTC

46#define hashbits_EVP_sha512 512 46#define hashbits_EVP_sha512 512
47#define hashbits_EVP_whirlpool 512 47#define hashbits_EVP_whirlpool 512
48 48
49#define KEY_BITS(cipher) keybits_ ## cipher 49#define KEY_BITS(cipher) keybits_ ## cipher
50#define KEY_SIZE(cipher) (KEY_BITS (cipher) >> 3) 50#define KEY_SIZE(cipher) (KEY_BITS (cipher) >> 3)
51#define keybits_EVP_bf_cbc 128 // actually 32-448 51//#define keybits_EVP_bf_ctr 128 // actually 32-448
52#define keybits_EVP_aes_128_cbc 128 52#define keybits_EVP_aes_128_ctr 128
53#define keybits_EVP_aes_192_cbc 192 53#define keybits_EVP_aes_192_ctr 192
54#define keybits_EVP_aes_256_cbc 256 54#define keybits_EVP_aes_256_ctr 256
55 55
56#define BLOCK_BITS(cipher) blockbits_ ## cipher 56#define BLOCK_BITS(cipher) blockbits_ ## cipher
57#define BLOCK_SIZE(cipher) (BLOCK_BITS (cipher) >> 3) 57#define BLOCK_SIZE(cipher) (BLOCK_BITS (cipher) >> 3)
58#define blockbits_EVP_bf_cbc 64 58//#define blockbits_EVP_bf_ctr 64
59#define blockbits_EVP_aes_128_cbc 128 59#define blockbits_EVP_aes_128_ctr 8
60#define blockbits_EVP_aes_192_cbc 128 60#define blockbits_EVP_aes_192_ctr 8
61#define blockbits_EVP_aes_256_cbc 128 61#define blockbits_EVP_aes_256_ctr 8
62
63#define IV_BITS(cipher) ivbits_ ## cipher
64#define IV_SIZE(cipher) (IV_BITS (cipher) >> 3)
65//#define ivbits_EVP_bf_ctr 64
66#define ivbits_EVP_aes_128_ctr 128
67#define ivbits_EVP_aes_192_ctr 128
68#define ivbits_EVP_aes_256_ctr 128
62 69
63/* Protocol version. Different major versions are incompatible, 70/* Protocol version. Different major versions are incompatible,
64 * different minor versions probably are compatible ;) 71 * different minor versions probably are compatible ;)
65 */ 72 */
66 73
67#define PROTOCOL_MAJOR 1 74#define PROTOCOL_MAJOR 1
68#define PROTOCOL_MINOR 0 75#define PROTOCOL_MINOR 0
69 76
77#define SERIAL_SIZE 16
78
70#define SEED_SIZE 64 // how many octets to seed rng with 79#define SEED_SIZE 64 // how many octets to seed rng with
71 80
72#define HKDF_SALT 32 81#define RSA_OAEP_SIZE 41
73#define IKM_SIZE 32 82
83#define HKDF_XTR_HASH EVP_sha512
84#define HKDF_PRF_HASH EVP_sha256
85
86#define HKDF_SALT 24 // how many bytes for the hkdf salt
74 87
75#define RSA_KEYLEN (RSABITS >> 3) 88#define RSA_KEYLEN (RSABITS >> 3)
76 89
77#define AUTH_DIGEST ENABLE_AUTH 90#define AUTH_DIGEST ENABLE_AUTH
78#define AUTH_SIZE (HASH_SIZE (AUTH_DIGEST)) 91#define AUTH_SIZE (HASH_SIZE (AUTH_DIGEST))
79#define AUTH_TTL 12 // challenge bytes timeout after n seconds of non-use 92#define AUTH_TTL 12 // challenge bytes timeout after n seconds of non-use
80 93
81#define CIPHER ENABLE_CIPHER 94#define CIPHER ENABLE_CIPHER
82#define CIPHER_KEYSIZE (KEY_SIZE (CIPHER)) 95#define CIPHER_KEYSIZE (KEY_SIZE (CIPHER))
96#define CIPHER_IKMSIZE (CIPHER_KEYSIZE * 3 / 2) // randomness in rsa challenge
83 97
84#define MAC_DIGEST ENABLE_DIGEST 98#define MAC_DIGEST ENABLE_HMAC
85#define MAC_KEYSIZE HASH_SIZE (ENABLE_DIGEST) // number of bits used for the HMAC key 99#define MAC_KEYSIZE HASH_SIZE (ENABLE_HMAC) // number of bits used for the HMAC key
100#define MAC_IKMSIZE (MAC_KEYSIZE * 3 / 2) // randomness in rsa challenge
86 101
87#define WINDOWSIZE 512 // sliding window size 102#define WINDOWSIZE 512 // sliding window size
88#define MAX_SEQNO (0xfffffff0U - WINDOWSIZE * 8) 103#define MAX_SEQNO (0xfffffff0U - WINDOWSIZE * 8)
89 104
90// hdr seq len hmac MAC MAC 105// hdr seq len hmac MAC MAC
91#define VPE_OVERHEAD (4 + 4 + 4 + RAND_SIZE + HMACLENGTH - 6 - 6) 106#define VPE_OVERHEAD (4 + 4 + 4 + HMACLENGTH - 6 - 6)
92#define IP_OVERHEAD 20 // size of a (normal) ip header 107#define IP_OVERHEAD 20 // size of a (normal) ip header
93#define GRE_OVERHEAD (IP_OVERHEAD + 4) 108#define GRE_OVERHEAD (IP_OVERHEAD + 4)
94#define ICMP_OVERHEAD (IP_OVERHEAD + 4) 109#define ICMP_OVERHEAD (IP_OVERHEAD + 4)
95#define UDP_OVERHEAD (IP_OVERHEAD + 20) // size of a (normal) ip + udp header (wrong, but don't care) 110#define UDP_OVERHEAD (IP_OVERHEAD + 20) // size of a (normal) ip + udp header (wrong, but don't care)
96#define TCP_OVERHEAD (IP_OVERHEAD + 22) // size of a (normal) ip + tcp header + packetlength 111#define TCP_OVERHEAD (IP_OVERHEAD + 22) // size of a (normal) ip + tcp header + packetlength
97#define MAX_OVERHEAD UDP_OVERHEAD // the max. overhead of any protocol (ok, tcp doesn't count) 112#define MAX_OVERHEAD UDP_OVERHEAD // the max. overhead of any protocol (ok, tcp doesn't count)
98#define ETH_OVERHEAD 14 // the size of an ethernet header 113#define ETH_OVERHEAD 14 // the size of an ethernet header
99#define MAXSIZE (MAX_MTU + VPE_OVERHEAD) // slightly too large, but who cares 114#define MAXSIZE (MAX_MTU + IP_OVERHEAD) // slightly too large, but who cares
100 115
101#define PKTCACHESIZE 16 // the size of the memory pool for packets 116#define PKTCACHESIZE 16 // the size of the memory pool for packets
102 117
103extern char *confbase; // directory in which all config files are 118extern char *confbase; // directory in which all config files are
104extern char *thisnode; // config for current node (TODO: remove) 119extern char *thisnode; // config for current node (TODO: remove)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines