Lines Matching refs:sha256_process_bytes

262 static void sha256_process_bytes(const void *buffer, size_t len, struct sha256_ctx *ctx) {  in sha256_process_bytes()  function
408 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
413 sha256_process_bytes(salt, salt_len, &ctx); in php_sha256_crypt_r()
421 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
424 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
427 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
435 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
437 sha256_process_bytes(alt_result, cnt, &ctx); in php_sha256_crypt_r()
443 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
445 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
457 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
475 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
496 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
498 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
503 sha256_process_bytes(s_bytes, salt_len, &ctx); in php_sha256_crypt_r()
508 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
513 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
515 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
713 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
722 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
736 sha256_process_bytes (buf, sizeof (buf), &ctx); in main()