Home
last modified time | relevance | path

Searched refs:nc_off (Results 1 – 10 of 10) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dcamellia.h283 size_t *nc_off,
Daria.h323 size_t *nc_off,
Daes.h574 size_t *nc_off,
/openthread-latest/third_party/mbedtls/repo/library/
Dcipher_wrap.h106 int (*ctr_func)(void *ctx, size_t length, size_t *nc_off,
Dcipher_wrap.c198 static int aes_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap() argument
202 return mbedtls_aes_crypt_ctr((mbedtls_aes_context *) ctx, length, nc_off, nonce_counter, in aes_crypt_ctr_wrap()
805 static int camellia_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in camellia_crypt_ctr_wrap() argument
809 return mbedtls_camellia_crypt_ctr((mbedtls_camellia_context *) ctx, length, nc_off, in camellia_crypt_ctr_wrap()
1223 static int aria_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in aria_crypt_ctr_wrap() argument
1227 return mbedtls_aria_crypt_ctr((mbedtls_aria_context *) ctx, length, nc_off, in aria_crypt_ctr_wrap()
Dcamellia.c624 size_t *nc_off, in mbedtls_camellia_crypt_ctr() argument
633 n = *nc_off; in mbedtls_camellia_crypt_ctr()
655 *nc_off = n; in mbedtls_camellia_crypt_ctr()
Daria.c622 size_t *nc_off, in mbedtls_aria_crypt_ctr() argument
631 n = *nc_off; in mbedtls_aria_crypt_ctr()
655 *nc_off = n; in mbedtls_aria_crypt_ctr()
Daes.c1439 size_t *nc_off, in mbedtls_aes_crypt_ctr() argument
1447 size_t offset = *nc_off; in mbedtls_aes_crypt_ctr()
1475 *nc_off = (*nc_off + length) % 16; in mbedtls_aes_crypt_ctr()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_aes.function115 size_t nc_off = 0;
119 TEST_EQUAL(mbedtls_aes_crypt_ctr(&ctx, len, &nc_off, ctr,
124 TEST_EQUAL(mbedtls_aes_crypt_ctr(&ctx, len, &nc_off, ctr,
/openthread-latest/third_party/mbedtls/repo/programs/test/
Dbenchmark.c783 size_t nc_off; in main() local
792 nc_off = 0; in main()
796 TIME_AND_TSC(title, mbedtls_aes_crypt_ctr(&aes, BUFSIZE, &nc_off, tmp, stream_block, in main()