Lines Matching refs:sha256_process_bytes
247 static void sha256_process_bytes(const void *buffer, size_t len, struct sha256_ctx *ctx) { in sha256_process_bytes() function
390 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
395 sha256_process_bytes(salt, salt_len, &ctx); in php_sha256_crypt_r()
403 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
406 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
409 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
417 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
419 sha256_process_bytes(alt_result, cnt, &ctx); in php_sha256_crypt_r()
425 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
427 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
439 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
457 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
478 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
480 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
485 sha256_process_bytes(s_bytes, salt_len, &ctx); in php_sha256_crypt_r()
490 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
495 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
497 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
694 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
703 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
717 sha256_process_bytes (buf, sizeof (buf), &ctx); in main()