Changeset a8f2692 for tools/traceanon/ipenc.c
- Timestamp:
- 10/15/09 18:25:10 (11 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 189f5c6
- Parents:
- 7f1b9d4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceanon/ipenc.c
ra7282fb ra8f2692 33 33 static uint32_t prefix; 34 34 static uint32_t netmask; 35 static void init_prefix( uint8_t*key)35 static void init_prefix(const char *key) 36 36 { 37 37 int a,b,c,d; … … 49 49 } 50 50 51 void enc_init(enum enc_type_t type, uint8_t*key)51 void enc_init(enum enc_type_t type, char *key) 52 52 { 53 uint8_tcryptopan_key[32];53 char cryptopan_key[32]; 54 54 memset(cryptopan_key,0,sizeof(cryptopan_key)); 55 55 enc_type = type;
Note: See TracChangeset
for help on using the changeset viewer.