Searched refs:nc_off (Results 1 – 13 of 13) sorted by relevance
/AliOS-Things-master/components/mbedtls/platform/yoc/ |
A D | aes_alt.c | 164 int mbedtls_aes_crypt_ctr(mbedtls_aes_context *ctx, size_t length, size_t *nc_off, in mbedtls_aes_crypt_ctr() argument 169 size_t n = *nc_off; in mbedtls_aes_crypt_ctr() 185 *nc_off = n; in mbedtls_aes_crypt_ctr()
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | blowfish.c | 395 size_t *nc_off, in mbedtls_blowfish_crypt_ctr() argument 406 BLOWFISH_VALIDATE_RET( nc_off != NULL ); in mbedtls_blowfish_crypt_ctr() 410 n = *nc_off; in mbedtls_blowfish_crypt_ctr() 430 *nc_off = n; in mbedtls_blowfish_crypt_ctr()
|
A D | cipher_wrap.c | 163 static int aes_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap() argument 167 return mbedtls_aes_crypt_ctr( (mbedtls_aes_context *) ctx, length, nc_off, nonce_counter, in aes_crypt_ctr_wrap() 685 static int camellia_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in camellia_crypt_ctr_wrap() argument 689 return mbedtls_camellia_crypt_ctr( (mbedtls_camellia_context *) ctx, length, nc_off, in camellia_crypt_ctr_wrap() 1061 static int aria_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aria_crypt_ctr_wrap() argument 1065 return mbedtls_aria_crypt_ctr( (mbedtls_aria_context *) ctx, length, nc_off, in aria_crypt_ctr_wrap() 1708 static int blowfish_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in blowfish_crypt_ctr_wrap() argument 1712 return mbedtls_blowfish_crypt_ctr( (mbedtls_blowfish_context *) ctx, length, nc_off, in blowfish_crypt_ctr_wrap()
|
A D | camellia.c | 694 size_t *nc_off, in mbedtls_camellia_crypt_ctr() argument 705 CAMELLIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_camellia_crypt_ctr() 709 n = *nc_off; in mbedtls_camellia_crypt_ctr() 729 *nc_off = n; in mbedtls_camellia_crypt_ctr()
|
A D | aria.c | 746 size_t *nc_off, in mbedtls_aria_crypt_ctr() argument 760 ARIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_aria_crypt_ctr() 762 n = *nc_off; in mbedtls_aria_crypt_ctr() 785 *nc_off = n; in mbedtls_aria_crypt_ctr()
|
A D | aes.c | 1426 size_t *nc_off, in mbedtls_aes_crypt_ctr() argument 1436 AES_VALIDATE_RET( nc_off != NULL ); in mbedtls_aes_crypt_ctr() 1442 n = *nc_off; in mbedtls_aes_crypt_ctr() 1462 *nc_off = n; in mbedtls_aes_crypt_ctr()
|
/AliOS-Things-master/components/mbedtls/platform/yoc/include/ |
A D | aes_alt.h | 156 size_t *nc_off,
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | camellia.h | 304 size_t *nc_off,
|
A D | blowfish.h | 276 size_t *nc_off,
|
A D | cipher_internal.h | 77 int (*ctr_func)( void *ctx, size_t length, size_t *nc_off,
|
A D | aria.h | 350 size_t *nc_off,
|
A D | aes.h | 584 size_t *nc_off,
|
/AliOS-Things-master/components/linkkit/include/linkkit/infra/ |
A D | infra_aes.h | 210 int infra_aes_crypt_ctr(infra_aes_context *ctx, size_t length, size_t *nc_off,
|
Completed in 20 milliseconds