Home
last modified time | relevance | path

Searched refs:mp_read_unsigned_bin (Results 1 – 4 of 4) sorted by relevance

/hostap-3.6.0/src/crypto/
Dcrypto_libtomcrypt.c20 #define mp_read_unsigned_bin(a, b, c) ltc_mp.unsigned_read(a, b, c) macro
748 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK || in crypto_mod_exp()
749 mp_read_unsigned_bin(p, (u8 *) power, power_len) != CRYPT_OK || in crypto_mod_exp()
750 mp_read_unsigned_bin(m, (u8 *) modulus, modulus_len) != CRYPT_OK) in crypto_mod_exp()
Dcrypto_wolfssl.c1040 if (mp_read_unsigned_bin(a, buf, len) != MP_OKAY) { in crypto_bignum_init_set()
1121 mp_read_unsigned_bin((mp_int *) r, buf, len) != MP_OKAY || in crypto_bignum_rand()
1519 if (mp_read_unsigned_bin(point->x, val, e->key.dp->size) != MP_OKAY) in crypto_ec_point_from_bin()
1522 if (mp_read_unsigned_bin(point->y, val, e->key.dp->size) != MP_OKAY) in crypto_ec_point_from_bin()
/hostap-3.6.0/src/tls/
Dbignum.c101 if (mp_read_unsigned_bin((mp_int *) n, (u8 *) buf, len) != MP_OKAY) { in bignum_set_unsigned_bin()
Dlibtommath.c962 static int mp_read_unsigned_bin (mp_int * a, const unsigned char *b, int c) in mp_read_unsigned_bin() function