Searched refs:bn1 (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-3.7.0/components/wpa_supplicant/test/ |
D | test_crypto.c | 48 crypto_bignum *bn1, *bn2, *sum; variable 60 bn1 = crypto_bignum_init_set(buf1, 32); 61 TEST_ASSERT_NOT_NULL(bn1); 66 TEST_ASSERT(crypto_bignum_add(bn1, bn2, sum) == 0); 71 crypto_bignum_deinit(bn1, 1); 79 crypto_bignum *bn1, *bn2, *mod; variable 91 bn1 = crypto_bignum_init_set(buf1, 32); 92 TEST_ASSERT_NOT_NULL(bn1); 97 TEST_ASSERT(crypto_bignum_mod(bn1, bn2, mod) == 0); 102 crypto_bignum_deinit(bn1, 1); [all …]
|