Lines Matching refs:_private
73 uECC_word_t _private[NUM_ECC_WORDS]; in uECC_make_key_with_d() local
79 memcpy (_private, d, NUM_ECC_BYTES); in uECC_make_key_with_d()
82 if (EccPoint_compute_public_key(_public, _private, curve)) { in uECC_make_key_with_d()
87 _private); in uECC_make_key_with_d()
96 _set_secure(_private, 0, NUM_ECC_BYTES); in uECC_make_key_with_d()
107 uECC_word_t _private[NUM_ECC_WORDS]; in uECC_make_key() local
120 uECC_vli_mmod(_private, _random, curve->n, BITS_TO_WORDS(curve->num_n_bits)); in uECC_make_key()
123 if (EccPoint_compute_public_key(_public, _private, curve)) { in uECC_make_key()
128 _private); in uECC_make_key()
137 _set_secure(_private, 0, NUM_ECC_BYTES); in uECC_make_key()
150 uECC_word_t _private[NUM_ECC_WORDS]; in uECC_shared_secret() local
153 uECC_word_t *p2[2] = {_private, tmp}; in uECC_shared_secret()
161 uECC_vli_bytesToNative(_private, in uECC_shared_secret()
173 carry = regularize_k(_private, _private, tmp, curve); in uECC_shared_secret()
195 _set_secure(_private, 0, sizeof(_private)); in uECC_shared_secret()