Home
last modified time | relevance | path

Searched refs:native (Results 1 – 6 of 6) sorted by relevance

/mcuboot-latest/ext/tinycrypt/lib/source/
Decc_dsa.c66 static void bits2int(uECC_word_t *native, const uint8_t *bits, in bits2int() argument
79 uECC_vli_clear(native, num_n_words); in bits2int()
80 uECC_vli_bytesToNative(native, bits, bits_size); in bits2int()
86 ptr = native + num_n_words; in bits2int()
87 while (ptr-- > native) { in bits2int()
94 if (uECC_vli_cmp_unsafe(curve->n, native, num_n_words) != 1) { in bits2int()
95 uECC_vli_sub(native, native, curve->n, num_n_words); in bits2int()
Decc.c815 const unsigned int *native) in uECC_vli_nativeToBytes() argument
820 bytes[i] = native[b / uECC_WORD_SIZE] >> (8 * (b % uECC_WORD_SIZE)); in uECC_vli_nativeToBytes()
825 void uECC_vli_bytesToNative(unsigned int *native, const uint8_t *bytes, in uECC_vli_bytesToNative() argument
829 uECC_vli_clear(native, (num_bytes + (uECC_WORD_SIZE - 1)) / uECC_WORD_SIZE); in uECC_vli_bytesToNative()
832 native[b / uECC_WORD_SIZE] |= in uECC_vli_bytesToNative()
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/
Decc.h530 const unsigned int *native);
538 void uECC_vli_bytesToNative(unsigned int *native, const uint8_t *bytes,
/mcuboot-latest/boot/zephyr/
DKconfig862 bool "Enable hooks for overriding MCUboot's native routines"
864 Allow to provide procedures for override or extend native
872 Allow to provide procedures for override or extend native
879 Allow to provide procedures for override or extend native
/mcuboot-latest/docs/
Drelease-notes.md131 - Various fixes to the Espressif native target.
171 - Add native flash encryption to Espressif targets
/mcuboot-latest/ext/tinycrypt/documentation/
Dtinycrypt.rst246 functions to convert between the native integer representation and the