Searched refs:nc_off (Results 1 – 8 of 8) sorted by relevance
/mbedtls-development/include/mbedtls/ |
A D | camellia.h | 294 size_t *nc_off,
|
A D | aria.h | 338 size_t *nc_off,
|
A D | aes.h | 589 size_t *nc_off,
|
/mbedtls-development/library/ |
A D | cipher_wrap.h | 75 int (*ctr_func)( void *ctx, size_t length, size_t *nc_off,
|
A D | camellia.c | 665 size_t *nc_off, in mbedtls_camellia_crypt_ctr() argument 676 CAMELLIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_camellia_crypt_ctr() 680 n = *nc_off; in mbedtls_camellia_crypt_ctr() 700 *nc_off = n; in mbedtls_camellia_crypt_ctr()
|
A D | cipher_wrap.c | 154 static int aes_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap() argument 158 return mbedtls_aes_crypt_ctr( (mbedtls_aes_context *) ctx, length, nc_off, nonce_counter, in aes_crypt_ctr_wrap() 709 static int camellia_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in camellia_crypt_ctr_wrap() argument 713 return mbedtls_camellia_crypt_ctr( (mbedtls_camellia_context *) ctx, length, nc_off, in camellia_crypt_ctr_wrap() 1118 static int aria_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aria_crypt_ctr_wrap() argument 1122 return mbedtls_aria_crypt_ctr( (mbedtls_aria_context *) ctx, length, nc_off, in aria_crypt_ctr_wrap()
|
A D | aria.c | 718 size_t *nc_off, in mbedtls_aria_crypt_ctr() argument 732 ARIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_aria_crypt_ctr() 734 n = *nc_off; in mbedtls_aria_crypt_ctr() 757 *nc_off = n; in mbedtls_aria_crypt_ctr()
|
A D | aes.c | 1385 size_t *nc_off, in mbedtls_aes_crypt_ctr() argument 1396 AES_VALIDATE_RET( nc_off != NULL ); in mbedtls_aes_crypt_ctr() 1402 n = *nc_off; in mbedtls_aes_crypt_ctr() 1424 *nc_off = n; in mbedtls_aes_crypt_ctr()
|
Completed in 17 milliseconds