Lines Matching refs:sha256_process_bytes

246 static void sha256_process_bytes(const void *buffer, size_t len, struct sha256_ctx *ctx) {  in sha256_process_bytes()  function
396 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
401 sha256_process_bytes(salt, salt_len, &ctx); in php_sha256_crypt_r()
409 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
412 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
415 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
423 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
425 sha256_process_bytes(alt_result, cnt, &ctx); in php_sha256_crypt_r()
431 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
433 sha256_process_bytes(key, key_len, &ctx); in php_sha256_crypt_r()
445 sha256_process_bytes(key, key_len, &alt_ctx); in php_sha256_crypt_r()
464 sha256_process_bytes(salt, salt_len, &alt_ctx); in php_sha256_crypt_r()
486 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
488 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
493 sha256_process_bytes(s_bytes, salt_len, &ctx); in php_sha256_crypt_r()
498 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
503 sha256_process_bytes(alt_result, 32, &ctx); in php_sha256_crypt_r()
505 sha256_process_bytes(p_bytes, key_len, &ctx); in php_sha256_crypt_r()
710 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
719 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
733 sha256_process_bytes (buf, sizeof (buf), &ctx); in main()