Home
last modified time | relevance | path

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

/mbedtls-3.5.0/library/
Daesce.c188 static inline uint32_t aes_rot_word(uint32_t word) in aes_rot_word() argument
190 return (word << (32 - 8)) | (word >> 8); in aes_rot_word()
/mbedtls-3.5.0/scripts/
Dcode_style.py64 return frozenset(word for s in checks for word in s.split())
/mbedtls-3.5.0/tests/suites/
Dtest_suite_lms.data18 # word at the start of the key/sig. We strip these 4 bytes from the signature
58 # "levels" word at the start of the key/sig. We strip these 4 bytes from the
90 # 4-byte "levels" word at the start of the key/sig. We strip these 4 bytes from
118 # 4-byte "levels" word at the start of the key/sig. We strip these 4 bytes from
Dtest_suite_common.function65 /* Test non-word-aligned buffers, for all combinations of alignedness */
Dtest_suite_bignum_random.function55 /* 16-word key */
58 /* 2-word initial state, should be zero */
/mbedtls-3.5.0/
DChangeLog3162 * Fix word size check in in pk.c to not depend on MBEDTLS_HAVE_INT64.