/hostap/src/tls/ |
D | bignum.c | 115 int bignum_cmp(const struct bignum *a, const struct bignum *b) in bignum_cmp() 127 int bignum_cmp_d(const struct bignum *a, unsigned long b) in bignum_cmp_d() 140 int bignum_add(const struct bignum *a, const struct bignum *b, in bignum_add() 158 int bignum_sub(const struct bignum *a, const struct bignum *b, in bignum_sub() 176 int bignum_mul(const struct bignum *a, const struct bignum *b, in bignum_mul() 195 int bignum_mulmod(const struct bignum *a, const struct bignum *b, in bignum_mulmod() 215 int bignum_exptmod(const struct bignum *a, const struct bignum *b, in bignum_exptmod()
|
D | libtommath.c | 131 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1) argument 212 static int s_mp_add (mp_int * a, mp_int * b, mp_int * c) in s_mp_add() 300 static int s_mp_sub (mp_int * a, mp_int * b, mp_int * c) in s_mp_sub() 416 static int mp_add (mp_int * a, mp_int * b, mp_int * c) in mp_add() 448 static int mp_sub (mp_int * a, mp_int * b, mp_int * c) in mp_sub() 485 static int mp_mul (mp_int * a, mp_int * b, mp_int * c) in mp_mul() 532 static int mp_mulmod (mp_int * a, mp_int * b, mp_int * c, mp_int * d) in mp_mulmod() 552 static int mp_mod (mp_int * a, mp_int * b, mp_int * c) in mp_mod() 678 static int mp_cmp (mp_int * a, mp_int * b) in mp_cmp() 700 static int mp_cmp_d(mp_int * a, mp_digit b) in mp_cmp_d() [all …]
|
/hostap/src/utils/ |
D | const_time.h | 48 static inline unsigned int const_time_eq(unsigned int a, unsigned int b) in const_time_eq() 55 static inline u8 const_time_eq_u8(unsigned int a, unsigned int b) in const_time_eq_u8() 77 static inline unsigned int const_time_eq_bin(const void *a, const void *b, in const_time_eq_bin() 172 static inline int const_time_memcmp(const void *a, const void *b, size_t len) in const_time_memcmp()
|
D | wpa_debug.h | 30 #define wpa_hexdump(l,t,b,le) do { } while (0) argument 31 #define wpa_hexdump_buf(l,t,b) do { } while (0) argument 32 #define wpa_hexdump_key(l,t,b,le) do { } while (0) argument 33 #define wpa_hexdump_buf_key(l,t,b) do { } while (0) argument 34 #define wpa_hexdump_ascii(l,t,b,le) do { } while (0) argument 35 #define wpa_hexdump_ascii_key(l,t,b,le) do { } while (0) argument
|
D | os.h | 48 static inline int os_time_before(struct os_time *a, struct os_time *b) in os_time_before() 55 static inline void os_time_sub(struct os_time *a, struct os_time *b, in os_time_sub() 70 struct os_reltime *b) in os_reltime_before() 77 static inline void os_reltime_sub(struct os_reltime *a, struct os_reltime *b, in os_reltime_sub()
|
D | ip_addr.c | 57 const struct hostapd_ip_addr *b) in hostapd_ip_equal()
|
D | ext_password.h | 26 #define ext_password_init(b, p) ((void *) 1) argument
|
D | common.h | 382 #define PRINTF_FORMAT(a,b) __attribute__ ((format (printf, (a), (b)))) argument 385 #define PRINTF_FORMAT(a,b) argument 462 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument 465 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument 570 static inline bool ether_addr_equal(const u8 *a, const u8 *b) in ether_addr_equal()
|
D | common.c | 30 int a, b; in hex2byte() local 119 int a, b; in hwaddr_compact_aton() local 145 int a, b; in hwaddr_aton2() local 921 static int freq_cmp(const void *a, const void *b) in freq_cmp()
|
/hostap/src/crypto/ |
D | random.h | 15 #define random_add_randomness(b, l) do { } while (0) argument 16 #define random_get_bytes(b, l) os_get_random((b), (l)) argument
|
D | aes-siv.c | 33 static void xor(u8 *a, const u8 *b) in xor() 42 static void xorend(u8 *a, int alen, const u8 *b, int blen) in xorend()
|
D | aes-wrap.c | 28 u8 *a, *r, b[AES_BLOCK_SIZE]; in aes_wrap() local
|
D | aes-unwrap.c | 29 u8 a[8], *r, b[AES_BLOCK_SIZE]; in aes_unwrap() local
|
D | rc4.c | 14 #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0) argument
|
D | crypto_libtomcrypt.c | 19 #define mp_to_unsigned_bin(a, b) ltc_mp.unsigned_write(a, b) argument 20 #define mp_read_unsigned_bin(a, b, c) ltc_mp.unsigned_read(a, b, c) argument 21 #define mp_exptmod(a,b,c,d) ltc_mp.exptmod(a,b,c,d) argument 743 void *b, *p, *m, *r; in crypto_mod_exp() local
|
D | crypto_wolfssl.c | 1428 const struct crypto_bignum *b, in crypto_bignum_add() 1445 int crypto_bignum_exptmod(const struct crypto_bignum *b, in crypto_bignum_exptmod() 1471 const struct crypto_bignum *b, in crypto_bignum_sub() 1483 const struct crypto_bignum *b, in crypto_bignum_div() 1495 const struct crypto_bignum *b, in crypto_bignum_addmod() 1508 const struct crypto_bignum *b, in crypto_bignum_mulmod() 1521 const struct crypto_bignum *b, in crypto_bignum_sqrmod() 1543 const struct crypto_bignum *b) in crypto_bignum_cmp() 1644 mp_int b; member 1938 const struct crypto_ec_point *b, in crypto_ec_point_add() [all …]
|
D | crypto_openssl.c | 181 BIGNUM *b, BN_CTX *ctx) in EC_GROUP_get_curve() 2091 const struct crypto_bignum *b, in crypto_bignum_add() 2100 const struct crypto_bignum *b, in crypto_bignum_mod() 2118 const struct crypto_bignum *b, in crypto_bignum_exptmod() 2141 const struct crypto_bignum *b, in crypto_bignum_inverse() 2166 const struct crypto_bignum *b, in crypto_bignum_sub() 2177 const struct crypto_bignum *b, in crypto_bignum_div() 2202 const struct crypto_bignum *b, in crypto_bignum_addmod() 2224 const struct crypto_bignum *b, in crypto_bignum_mulmod() 2247 const struct crypto_bignum *b, in crypto_bignum_sqrmod() [all …]
|
/hostap/src/p2p/ |
D | p2p_utils.c | 80 const struct p2p_reg_class *b, in p2p_reg_class_intersect() 112 const struct p2p_channels *b, in p2p_channels_intersect() 163 const struct p2p_channels *b) in p2p_channels_union_inplace() 203 const struct p2p_channels *b, in p2p_channels_union()
|
/hostap/src/ap/ |
D | vlan.c | 17 int vlan_compare(struct vlan_description *a, struct vlan_description *b) in vlan_compare()
|
D | vlan.h | 24 vlan_compare(struct vlan_description *a, struct vlan_description *b) in vlan_compare()
|
D | dhcp_snoop.c | 36 const struct bootp_pkt *b; in handle_dhcp() local
|
/hostap/tests/fuzzing/json/corpus/ |
D | 1.json | 1 {"a":[[]],"b":1,"c":"q","d":{"e":[{}]}} number
|
/hostap/src/eapol_auth/ |
D | eapol_auth_dump.c | 137 #define _SB(b) ((b) ? "TRUE" : "FALSE") in eapol_auth_dump_state() argument
|
/hostap/tests/ |
D | test-bss.c | 17 #define ASSERT_CMP_INT(a, cmp, b) { \ argument
|
/hostap/wlantest/ |
D | wep.c | 21 #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0) in wep_crypt() argument
|