Lines Matching refs:_private
72 uECC_word_t _private[NUM_ECC_WORDS]; in uECC_make_key_with_d() local
78 memcpy (_private, d, NUM_ECC_BYTES); in uECC_make_key_with_d()
81 if (EccPoint_compute_public_key(_public, _private, curve)) { in uECC_make_key_with_d()
86 _private); in uECC_make_key_with_d()
95 memset(_private, 0, NUM_ECC_BYTES); in uECC_make_key_with_d()
106 uECC_word_t _private[NUM_ECC_WORDS]; in uECC_make_key() local
119 uECC_vli_mmod(_private, _random, curve->n, BITS_TO_WORDS(curve->num_n_bits)); in uECC_make_key()
122 if (EccPoint_compute_public_key(_public, _private, curve)) { in uECC_make_key()
127 _private); in uECC_make_key()
136 memset(_private, 0, NUM_ECC_BYTES); in uECC_make_key()
149 uECC_word_t _private[NUM_ECC_WORDS]; in uECC_shared_secret() local
152 uECC_word_t *p2[2] = {_private, tmp}; in uECC_shared_secret()
160 uECC_vli_bytesToNative(_private, in uECC_shared_secret()
172 carry = regularize_k(_private, _private, tmp, curve); in uECC_shared_secret()
196 memset(_private, 0, sizeof(_private)); in uECC_shared_secret()
197 __asm__ __volatile__("" :: "g"(_private) : "memory"); in uECC_shared_secret()