Searched refs:key (Results 26 - 50 of 506) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/router/samba/source/passdb/
H A Dsecrets.c56 void *secrets_fetch(const char *key, size_t *size) argument
62 kbuf.dptr = (char *)key;
63 kbuf.dsize = strlen(key);
72 BOOL secrets_store(const char *key, const void *data, size_t size) argument
78 kbuf.dptr = (char *)key;
79 kbuf.dsize = strlen(key);
88 BOOL secrets_delete(const char *key) argument
94 kbuf.dptr = (char *)key;
95 kbuf.dsize = strlen(key);
101 fstring key; local
130 fstring key; local
142 fstring key; local
165 fstring key; local
175 fstring key; local
426 char *key = NULL; local
477 char *key = NULL; local
519 char *key = NULL; local
613 char *key = NULL; local
826 fstring key; local
843 fstring key; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/
H A Daes.h81 AES_KEY *key);
83 AES_KEY *key);
86 const AES_KEY *key);
88 const AES_KEY *key);
91 const AES_KEY *key, const int enc);
93 const unsigned long length, const AES_KEY *key,
96 const unsigned long length, const AES_KEY *key,
99 const unsigned long length, const AES_KEY *key,
102 const unsigned long length, const AES_KEY *key,
H A Drc4.h80 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
81 void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata,
/asus-wl-520gu-7.0.1.45/src/router/library/
H A DPRO_file.h16 char key[MAX_ITEM_LEN]; member in struct:multi_items
22 int PRO_GetInt(char *sect, char *key, int *val, FILE *fp);
23 int PRO_GetStr(char *sect, char *key, char *val, int size, FILE* fp);
24 int PRO_GetStrLen(char *sect, char *key, FILE* fp);
25 int PRO_GetLong(char *sect, char *key, long *val, FILE *fp);
27 int PRO_SetInt(char *sect, char *key, int val, char *fname);
28 int PRO_SetStr(char *sect, char *key, char *val, char *fname);
29 int PRO_SetStr1(char *sect, char *key, char *val, char *fname);
34 int PRO_DelKey(char *sect, char *key,char *fn);
/asus-wl-520gu-7.0.1.45/src/router/library/cgi-lib/
H A Dcgi-priv.h37 char *key; member in struct:cgi_structure
/asus-wl-520gu-7.0.1.45/src/router/library/include/
H A DPRO_file.h16 char key[MAX_ITEM_LEN]; member in struct:multi_items
22 int PRO_GetInt(char *sect, char *key, int *val, FILE *fp);
23 int PRO_GetStr(char *sect, char *key, char *val, int size, FILE* fp);
24 int PRO_GetStrLen(char *sect, char *key, FILE* fp);
25 int PRO_GetLong(char *sect, char *key, long *val, FILE *fp);
27 int PRO_SetInt(char *sect, char *key, int val, char *fname);
28 int PRO_SetStr(char *sect, char *key, char *val, char *fname);
29 int PRO_SetStr1(char *sect, char *key, char *val, char *fname);
34 int PRO_DelKey(char *sect, char *key,char *fn);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dadt_tree.c99 SAFE_FREE( root->key );
120 Find the next child given a key string
123 static TREE_NODE* sorted_tree_birth_child( TREE_NODE *node, char* key )
134 infant->key = strdup( key );
148 node->key ? node->key : "NULL", infant->key ));
165 infant->key, node->children[i-1]->key));
[all...]
H A Dhmacmd5.c31 void hmac_md5_init_rfc2104(uchar* key, int key_len, HMACMD5Context *ctx) argument
35 /* if key is longer than 64 bytes reset it to key=MD5(key) */
42 MD5Update(&tctx, key, key_len);
45 key = tk;
49 /* start out by storing key in pads */
52 memcpy( ctx->k_ipad, key, key_len);
53 memcpy( ctx->k_opad, key, key_len);
55 /* XOR key wit
69 hmac_md5_init_limK_to_64(const uchar* key, int key_len, HMACMD5Context *ctx) argument
124 hmac_md5( uchar key[16], uchar* data, int data_len, uchar* digest) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/examples/LDAP/
H A DconvertSambaAccount32 my ( %attr_map, %group_attr_map, $key );
187 foreach $key ( keys %attr_map ) {
188 if ( defined($entry->get_value($key)) ) {
189 push @adds, "$attr_map{$key}: " . $entry->get_value($key);
190 push @dels, "$key";
191 $entry->add( $attr_map{$key} => $entry->get_value($key) );
192 $entry->delete( $key );
196 foreach $key ( key
[all...]
/asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/
H A Drc4.h79 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
80 void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata,
H A Dblowfish.h108 void BF_set_key(BF_KEY *key, int len, const unsigned char *data);
110 void BF_encrypt(BF_LONG *data,const BF_KEY *key);
111 void BF_decrypt(BF_LONG *data,const BF_KEY *key);
114 const BF_KEY *key, int enc);
H A Dcast.h83 int short_key; /* Use reduced rounds for short key */
87 void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data);
88 void CAST_ecb_encrypt(const unsigned char *in,unsigned char *out,CAST_KEY *key,
90 void CAST_encrypt(CAST_LONG *data,CAST_KEY *key);
91 void CAST_decrypt(CAST_LONG *data,CAST_KEY *key);
H A Dhmac.h82 unsigned char key[HMAC_MAX_MD_CBLOCK]; member in struct:hmac_ctx_st
93 void HMAC_Init(HMAC_CTX *ctx, const void *key, int len,
95 void HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
99 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
H A Drc2.h83 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
84 void RC2_ecb_encrypt(const unsigned char *in,unsigned char *out,RC2_KEY *key,
86 void RC2_encrypt(unsigned long *data,RC2_KEY *key);
87 void RC2_decrypt(unsigned long *data,RC2_KEY *key);
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter/
H A Dip_nat_proto_gre.c9 * It has an optional key field, which may help us distinguishing two
15 * field called "CallID", which serves us for the same purpose as the key
45 /* is key in given range between min and max */
52 u_int32_t key; local
55 key = tuple->src.u.gre.key;
57 key = tuple->dst.u.gre.key;
59 return ntohl(key) >= ntohl(min->gre.key)
71 u_int32_t key = 0, *keyptr; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/shared/bcmcrypto/
H A Drc4.h30 void prepare_key(uchar *key_data_ptr, int key_data_len, rc4_ks_t *key);
32 void rc4(uchar *buffer_ptr, int buffer_len, rc4_ks_t *key);
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/bcmcrypto/
H A Drc4.h30 void prepare_key(uchar *key_data_ptr, int key_data_len, rc4_ks_t *key);
32 void rc4(uchar *buffer_ptr, int buffer_len, rc4_ks_t *key);
/asus-wl-520gu-7.0.1.45/src/router/samba/source/libsmb/
H A Dunexpected.c26 /* the key type used in the unexpeceted packet database */
44 struct unexpected_key key; local
62 key.packet_type = p->packet_type;
63 key.timestamp = p->timestamp;
64 key.count = count++;
66 kbuf.dptr = (char *)&key;
67 kbuf.dsize = sizeof(key);
82 struct unexpected_key key; local
84 memcpy(&key, kbuf.dptr, sizeof(key));
120 struct unexpected_key key; local
[all...]
H A Dsamlogon_cache.c63 TDB_DATA key; local
83 asprintf(&key.dptr, "U/%s/%d", domain, user->user_rid);
84 key.dsize = strlen(key.dptr) - 1; /* keys are not NULL terminated */
86 DEBUG(10, ("netsamlogon_clear_cached_user: clearing %s\n", key.dptr));
88 tdb_delete(tdb, key);
90 SAFE_FREE(key.dptr);
94 asprintf(&key.dptr, "UG/%s/%d", domain, user->user_rid);
95 key.dsize = strlen(key
163 TDB_DATA data, key; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter.noQoS/
H A Dip_nat_proto_gre.c9 * It has an optional key field, which may help us distinguishing two
15 * field called "CallID", which serves us for the same purpose as the key
40 /* is key in given range between min and max */
47 return ntohl(tuple->src.u.gre.key) >= ntohl(min->gre.key)
48 && ntohl(tuple->src.u.gre.key) <= ntohl(max->gre.key);
59 u_int32_t key = 0, *keyptr; local
62 keyptr = &tuple->src.u.gre.key;
64 keyptr = &tuple->dst.u.gre.key;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips64/sn/sn0/
H A Daddrs.h332 #define ADD_HUBWID_KEY(key,hubwid)\
333 (key|=((__psunsigned_t)hubwid << KEY_HUBWID_SHFT))
335 #define ADD_HSTNASID_KEY(key,hstnasid)\
336 (key|=((__psunsigned_t)hstnasid << KEY_HSTNASID_SHFT))
338 #define GET_DEVNASID_FROM_KEY(key) ((short)(key >> KEY_DEVNASID_SHFT))
339 #define GET_WIDID_FROM_KEY(key) ((uchar)(key >> KEY_WIDID_SHFT))
340 #define GET_PCIID_FROM_KEY(key) ((uchar)(key >> KEY_PCIID_SHF
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-mips64/sn/sn0/
H A Daddrs.h332 #define ADD_HUBWID_KEY(key,hubwid)\
333 (key|=((__psunsigned_t)hubwid << KEY_HUBWID_SHFT))
335 #define ADD_HSTNASID_KEY(key,hstnasid)\
336 (key|=((__psunsigned_t)hstnasid << KEY_HSTNASID_SHFT))
338 #define GET_DEVNASID_FROM_KEY(key) ((short)(key >> KEY_DEVNASID_SHFT))
339 #define GET_WIDID_FROM_KEY(key) ((uchar)(key >> KEY_WIDID_SHFT))
340 #define GET_PCIID_FROM_KEY(key) ((uchar)(key >> KEY_PCIID_SHF
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Dipcbuf.h16 __kernel_key_t key; member in struct:ipc64_perm
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips/
H A Dipcbuf.h16 __kernel_key_t key; member in struct:ipc64_perm
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips64/
H A Dipcbuf.h16 __kernel_key_t key; member in struct:ipc64_perm

Completed in 389 milliseconds

1234567891011>>