Searched refs:key (Results 101 - 125 of 506) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/samba/examples/LDAP/smbldap-tools/mkntpwd/
H A Dsmbdes.c181 static void dohash(char *out, char *in, char *key) argument
193 permute(pk1, key, perm1, 56);
260 static void str_to_key(unsigned char *str,unsigned char *key) argument
264 key[0] = str[0]>>1;
265 key[1] = ((str[0]&0x01)<<6) | (str[1]>>2);
266 key[2] = ((str[1]&0x03)<<5) | (str[2]>>3);
267 key[3] = ((str[2]&0x07)<<4) | (str[3]>>4);
268 key[4] = ((str[3]&0x0F)<<3) | (str[4]>>5);
269 key[5] = ((str[4]&0x1F)<<2) | (str[5]>>6);
270 key[
278 smbhash(unsigned char *out, unsigned char *in, unsigned char *key) argument
320 cred_hash1(unsigned char *out,unsigned char *in,unsigned char *key) argument
328 cred_hash2(unsigned char *out,unsigned char *in,unsigned char *key) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/libsmb/
H A Dtrustdom_cache.c84 * Form up trustdom name key. It is based only
88 * @return cache key for use in gencache mechanism
101 * Store trusted domain in gencache as the domain name (key)
115 char *key, *alt_key; local
127 key = trustdom_cache_key(name);
138 && gencache_set(key, sid_string, timeout));
141 return gencache_set(key, sid_string, timeout);
158 char *key, *value; local
167 /* prepare a key and get the value */
168 key
261 flush_trustdom_name(const char* key, const char *value, time_t timeout, void* dptr) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/LPRng/UTILS/
H A DLPRng.pm.in108 my($key);
110 foreach $key (sort keys %$hash ){
111 print " '$key'='". $hash->{$key} . "'\n";
118 my($file,$key,$value,$line);
128 ($key,$value) = ($line =~ /^\s*([\w-]*)(.*)/);
130 ($key = trimall($key)) =~ s/-/_/g;
131 print "key '$key'
[all...]
H A DLPRng.pm108 my($key);
110 foreach $key (sort keys %$hash ){
111 print " '$key'='". $hash->{$key} . "'\n";
118 my($file,$key,$value,$line);
128 ($key,$value) = ($line =~ /^\s*([\w-]*)(.*)/);
130 ($key = trimall($key)) =~ s/-/_/g;
131 print "key '$key'
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/passdb/
H A Dpdb_tdb.c47 TDB_DATA key; member in struct:tdbsam_privates
68 tdb_state->key = tdb_firstkey(tdb_state->passwd_tdb);
88 SAFE_FREE(tdb_state->key.dptr);
113 while ((tdb_state->key.dsize != 0) && (strncmp(tdb_state->key.dptr, prefix, prefixlen))) {
115 old_key = tdb_state->key;
118 tdb_state->key = tdb_nextkey(tdb_state->passwd_tdb, tdb_state->key);
129 data = tdb_fetch(tdb_state->passwd_tdb, tdb_state->key);
143 old_key = tdb_state->key;
162 TDB_DATA data, key; local
239 TDB_DATA data, key; local
293 TDB_DATA key; local
350 TDB_DATA key, data; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/LPRng/src/include/
H A Dlinelist.h35 char sort_key[512]; /* sort key for job */
37 /* information about job in key=value format */
83 char *key; /* key we use for value */ member in struct:jobwords
186 char *Find_str_in_flat( char *str, const char *key, const char *sep );
187 int Find_last_key( struct line_list *l, const char *key, const char *sep, int *m );
188 int Find_last_casekey( struct line_list *l, const char *key, const char *sep, int *m );
189 int Find_first_key( struct line_list *l, const char *key, const char *sep, int *m );
190 int Find_first_casekey( struct line_list *l, const char *key, const char *sep, int *m );
191 const char *Find_value( struct line_list *l, const char *key, cons
[all...]
H A Dsendauth.h21 void Put_in_auth( int tempfd, const char *key, char *value );
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dipc.h11 __kernel_key_t key; member in struct:ipc_perm
24 #define IPC_CREAT 00001000 /* create if key is nonexistent */
25 #define IPC_EXCL 00002000 /* fail if key exists */
59 key_t key; member in struct:kern_ipc_perm
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dipc.h11 __kernel_key_t key; member in struct:ipc_perm
24 #define IPC_CREAT 00001000 /* create if key is nonexistent */
25 #define IPC_EXCL 00002000 /* fail if key exists */
59 key_t key; member in struct:kern_ipc_perm
/asus-wl-520gu-7.0.1.45/src/router/samba/source/python/
H A Dgtdbtool25 def display_key_x00(key):
27 return string.replace(key, "\x00", "")
/asus-wl-520gu-7.0.1.45/src/router/samba/source/tdb/
H A Dtdb.h115 TDB_DATA tdb_fetch(TDB_CONTEXT *tdb, TDB_DATA key);
116 int tdb_delete(TDB_CONTEXT *tdb, TDB_DATA key);
117 int tdb_store(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf, int flag);
118 int tdb_append(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA new_dbuf);
121 TDB_DATA tdb_nextkey(TDB_CONTEXT *tdb, TDB_DATA key);
123 int tdb_exists(TDB_CONTEXT *tdb, TDB_DATA key);
131 int tdb_chainlock(TDB_CONTEXT *tdb, TDB_DATA key);
132 int tdb_chainunlock(TDB_CONTEXT *tdb, TDB_DATA key);
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/ext2ed/
H A Dmain.c138 int key = 0; local
140 while (!key) {
145 key = wgetch(command_win);
146 switch (key) {
148 key = 0;
162 key = 0;
166 key = '\b';
168 if ((key < 32 && key != '\b' && key !
178 int key = command_read_key(); local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/infosvr/
H A Dwlutils.c160 wsec_key_t key; local
162 unsigned char *data=key.data;
201 // Set WEP key
204 memset(&key, 0, sizeof(wsec_key_t));
206 key.index = i;
215 key.algo = CRYPTO_ALGO_WEP1;
216 key.len=5;
220 key.algo = CRYPTO_ALGO_WEP128;
221 key.len=13;
224 strncpy(key
410 char key[4][36]; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/reiserfs/
H A Dprints.c18 static char * reiserfs_cpu_offset (struct cpu_key * key) argument
20 if (cpu_key_k_type(key) == TYPE_DIRENTRY)
22 (unsigned long long)GET_HASH_VALUE (cpu_key_k_offset (key)),
23 (unsigned long long)GET_GENERATION_NUMBER (cpu_key_k_offset (key)));
25 sprintf (off_buf, "0x%Lx", (unsigned long long)cpu_key_k_offset (key));
30 static char * le_offset (struct key * key) argument
34 version = le_key_version (key);
35 if (le_key_k_type (version, key) == TYPE_DIRENTRY)
37 (unsigned long long)GET_HASH_VALUE (le_key_k_offset (version, key)),
45 cpu_type(struct cpu_key * key) argument
59 le_type(struct key * key) argument
78 sprintf_le_key(char * buf, struct key * key) argument
89 sprintf_cpu_key(char * buf, struct cpu_key * key) argument
394 struct key * key; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-parisc/
H A Dipcbuf.h13 key_t key; member in struct:ipc64_perm
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-parisc/
H A Dipcbuf.h13 key_t key; member in struct:ipc64_perm
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/ext2fs/
H A Dtdb.h138 typedef unsigned int (*tdb_hash_func)(TDB_DATA *key);
158 TDB_DATA tdb_fetch(struct tdb_context *tdb, TDB_DATA key);
159 int tdb_parse_record(struct tdb_context *tdb, TDB_DATA key,
160 int (*parser)(TDB_DATA key, TDB_DATA data,
163 int tdb_delete(struct tdb_context *tdb, TDB_DATA key);
164 int tdb_store(struct tdb_context *tdb, TDB_DATA key, TDB_DATA dbuf, int flag);
165 int tdb_append(struct tdb_context *tdb, TDB_DATA key, TDB_DATA new_dbuf);
168 TDB_DATA tdb_nextkey(struct tdb_context *tdb, TDB_DATA key);
171 int tdb_exists(struct tdb_context *tdb, TDB_DATA key);
196 int tdb_chainlock(struct tdb_context *tdb, TDB_DATA key);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppd/
H A Dchap_ms.c109 DesEncrypt(clear, key, cipher)
111 u_char *key; /* IN 7 octets */
118 MakeKey(key, des_key);
133 DesEncrypt(clear, key, cipher)
135 u_char *key; /* IN 7 octets */
141 MakeKey(key, des_key);
169 /* in == 8-byte string (expanded version of the 56-bit key)
207 static void MakeKey(key, des_key)
208 u_char *key; /* IN 56 bit DES key missin
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/include/
H A Dhash.h44 * key: stores the string key. The hash_element is always allocated with
47 * end of the structure, so keep "key" at the end of the structure.
55 char key[1]; member in struct:hash_element
63 * comp_func: the compare function used during hash key comparisons.
/asus-wl-520gu-7.0.1.45/src/router/library/cgi-lib/
H A Dcgi-lib.h102 associated key and value to the linked list entries. It parses
114 list_print() - This function will print out the key/value pairs in our linked list.
136 key found will be deleted, if NULL is supplied for the
137 key then the first matching value will be deleted, if
138 both the key and value are supplied then the
139 key and value must match in order for the node to be
144 int list_delete_entry(LIST *head, char *key, char *value);
148 entries based on the key passed. This assumes that
149 multiple entries with this one named key exist. A
155 int list_delete_key_multi(LIST *head, char *key);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/
H A Dcgi-lib.h102 associated key and value to the linked list entries. It parses
114 list_print() - This function will print out the key/value pairs in our linked list.
136 key found will be deleted, if NULL is supplied for the
137 key then the first matching value will be deleted, if
138 both the key and value are supplied then the
139 key and value must match in order for the node to be
144 int list_delete_entry(LIST *head, char *key, char *value);
148 entries based on the key passed. This assumes that
149 multiple entries with this one named key exist. A
155 int list_delete_key_multi(LIST *head, char *key);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/ez-ipupdate/
H A Dasus_ddns.c70 static void hm(text, text_len, key, key_len, digest)
73 unsigned char *key; /* pointer to authentication key */
74 int key_len; /* length of authentication key */
80 * key XORd with ipad
83 * key XORd with opad
87 /* if key is longer than 64 bytes reset it to key=MD5(key) */
91 md5_process_bytes(key, key_le
187 unsigned char key[16], data[256], digest[16]; local
520 unsigned char *p, user[256], hwaddr[6], hwaddr_str[18], key[64], msg[256], ipbuf[20], bin_pwd[16]; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/hfs/
H A Dbfind.c42 * records in a B-tree. Given a B-tree and a key it locates the
43 * "greatest" record "less than or equal to" the given key. The
96 * If every record in the tree is "greater than" the given key
98 * If every record in the tree is "greater than" the given key
102 * If a "matching" record is located with key "equal to" 'target'
104 * If a "matching" record is located with key "greater than" 'target'
117 struct hfs_bkey *key; local
146 /* reverse linear search yielding largest key "less
151 key = belem_key(curr);
152 if (!key
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/lxdialog/
H A Dyesno.c46 int i, x, y, key = 0, button = 0; local
86 while (key != ESC) {
87 key = wgetch (dialog);
88 switch (key) {
101 button = ((key == KEY_LEFT ? --button : ++button) < 0)
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dyesno.c46 int i, x, y, key = 0, button = 0; local
86 while (key != ESC) {
87 key = wgetch (dialog);
88 switch (key) {
101 button = ((key == KEY_LEFT ? --button : ++button) < 0)

Completed in 236 milliseconds

1234567891011>>