Home
last modified time | relevance | path

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

/third_party/mbedtls/library/
Dblowfish.c420 size_t *nc_off, in mbedtls_blowfish_crypt_ctr() argument
431 BLOWFISH_VALIDATE_RET( nc_off != NULL ); in mbedtls_blowfish_crypt_ctr()
435 n = *nc_off; in mbedtls_blowfish_crypt_ctr()
455 *nc_off = n; in mbedtls_blowfish_crypt_ctr()
Dcipher_wrap.c188 static int aes_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap() argument
192 return mbedtls_aes_crypt_ctr( (mbedtls_aes_context *) ctx, length, nc_off, nonce_counter, in aes_crypt_ctr_wrap()
710 static int camellia_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in camellia_crypt_ctr_wrap() argument
714 return mbedtls_camellia_crypt_ctr( (mbedtls_camellia_context *) ctx, length, nc_off, in camellia_crypt_ctr_wrap()
1086 static int aria_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in aria_crypt_ctr_wrap() argument
1090 return mbedtls_aria_crypt_ctr( (mbedtls_aria_context *) ctx, length, nc_off, in aria_crypt_ctr_wrap()
1733 static int blowfish_crypt_ctr_wrap( void *ctx, size_t length, size_t *nc_off, in blowfish_crypt_ctr_wrap() argument
1737 return mbedtls_blowfish_crypt_ctr( (mbedtls_blowfish_context *) ctx, length, nc_off, in blowfish_crypt_ctr_wrap()
Dcamellia.c719 size_t *nc_off, in mbedtls_camellia_crypt_ctr() argument
730 CAMELLIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_camellia_crypt_ctr()
734 n = *nc_off; in mbedtls_camellia_crypt_ctr()
754 *nc_off = n; in mbedtls_camellia_crypt_ctr()
Daria.c771 size_t *nc_off, in mbedtls_aria_crypt_ctr() argument
785 ARIA_VALIDATE_RET( nc_off != NULL ); in mbedtls_aria_crypt_ctr()
787 n = *nc_off; in mbedtls_aria_crypt_ctr()
810 *nc_off = n; in mbedtls_aria_crypt_ctr()
Daes.c1462 size_t *nc_off, in mbedtls_aes_crypt_ctr() argument
1472 AES_VALIDATE_RET( nc_off != NULL ); in mbedtls_aes_crypt_ctr()
1478 n = *nc_off; in mbedtls_aes_crypt_ctr()
1498 *nc_off = n; in mbedtls_aes_crypt_ctr()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-gencrypto/
Dlws-genaes.c305 size_t nc_off = 0; in test_genaes_ctr() local
318 if (lws_genaes_crypt(&ctx, ctr, 16, res, nonce_counter, sb, &nc_off, 0)) { in test_genaes_ctr()
334 nc_off = 0; in test_genaes_ctr()
343 if (lws_genaes_crypt(&ctx, res, 16, res1, nonce_counter, sb, &nc_off, 0)) { in test_genaes_ctr()
/third_party/mbedtls/include/mbedtls/
Dcamellia.h329 size_t *nc_off,
Dblowfish.h301 size_t *nc_off,
Dcipher_internal.h102 int (*ctr_func)( void *ctx, size_t length, size_t *nc_off,
Daria.h376 size_t *nc_off,
Daes.h610 size_t *nc_off,