Searched refs:nc_off (Results 1 – 11 of 11) sorted by relevance
/third_party/mbedtls/library/ |
D | blowfish.c | 420 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()
|
D | cipher_wrap.c | 188 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()
|
D | camellia.c | 719 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()
|
D | aria.c | 771 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()
|
D | aes.c | 1462 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/ |
D | lws-genaes.c | 305 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/ |
D | camellia.h | 329 size_t *nc_off,
|
D | blowfish.h | 301 size_t *nc_off,
|
D | cipher_internal.h | 102 int (*ctr_func)( void *ctx, size_t length, size_t *nc_off,
|
D | aria.h | 376 size_t *nc_off,
|
D | aes.h | 610 size_t *nc_off,
|