Home
last modified time | relevance | path

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

/third_party/libwebsockets/minimal-examples/api-tests/api-test-gencrypto/
Dlws-genaes.c319 size_t nc_off = 0; in test_genaes_ctr() local
332 if (lws_genaes_crypt(&ctx, ctr, 16, res, nonce_counter, sb, &nc_off, 0)) { in test_genaes_ctr()
348 nc_off = 0; in test_genaes_ctr()
357 if (lws_genaes_crypt(&ctx, res, 16, res1, nonce_counter, sb, &nc_off, 0)) { in test_genaes_ctr()
/third_party/mbedtls/library/
Dcamellia.c665 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()
Dcipher_wrap.c154 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()
Daria.c718 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()
Dcipher_wrap.h75 int (*ctr_func)( void *ctx, size_t length, size_t *nc_off,
Daes.c1385 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()
/third_party/mbedtls/include/mbedtls/
Dcamellia.h294 size_t *nc_off,
Daria.h338 size_t *nc_off,
Daes.h585 size_t *nc_off,