-
Notifications
You must be signed in to change notification settings - Fork 7.9k
add BLAKE3 hash #13194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
divinity76
wants to merge
36
commits into
php:master
Choose a base branch
from
divinity76:hash-blake3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
add BLAKE3 hash #13194
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
187c8e9
add BLAKE3 hash
divinity76 14cd419
add HashTable *args
divinity76 fcc16d3
update github verify-generated-files
divinity76 bf8a527
(hopefully) fix MSVC build
divinity76 6634154
attempt MSVC fix
divinity76 6f40213
disable ARM Neon optimizations
divinity76 882466b
enable ARM Neon optimizations (tested on Oracle Cloud)
divinity76 61f4b26
Merge branch 'master' into hash-blake3
divinity76 012d660
fix path
divinity76 de9e7e9
Update ext/hash/config.w32
divinity76 6693562
remove unused file libblake3.pc.in
divinity76 ab2229e
Merge branch 'php:master' into hash-blake3
divinity76 2a040f7
Delete ext/hash/blake3/upstream_blake3/c/libblake3.pc.in
divinity76 9439644
add blake3 LICENSE
divinity76 d704780
Update ext/hash/config.m4
divinity76 f12caf0
Update ext/hash/config.m4
divinity76 1954b37
license headers
divinity76 9504fa1
php patches + optimized checkout
divinity76 2a2b5ad
Merge branch 'php:master' into hash-blake3
divinity76 06e5a75
Merge branch 'php:master' into hash-blake3
divinity76 ad9c31e
Merge branch 'php:master' into hash-blake3
divinity76 09a34ef
optimize neon loadu_128/storeu_128
divinity76 c9678bf
Merge branch 'master' into hash-blake3
divinity76 1f14967
update upstream blake3 1.5.5
divinity76 59be6da
apply https://github.com/BLAKE3-team/BLAKE3/pull/443
divinity76 2ed54b7
re-run CI (random MacOS timeout error, not my fault)
divinity76 b3e063e
remove controversial fetch_upstream_blake3.sh
divinity76 2bb1af7
Update ext/hash/hash_blake3.c
divinity76 cafc856
Update ext/hash/tests/hash_hmac_algos.phpt
divinity76 113c1fd
nits from review
divinity76 896351a
re-run CI (random network failure)
divinity76 8762e32
try to fix serialization
divinity76 b7f46f8
serialization still broken on 32bit
divinity76 263b2f6
attempt 32bit serialization fix
divinity76 afc0744
re-run CI (windows CI network failure)
divinity76 9bdcf12
Merge branch 'php:master' into hash-blake3
divinity76 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
divinity76 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# afaik the PHP project doesn't allow git submodules, so we do this fetcher script instead. | ||
cd "$(dirname "$0")" | ||
rm -rf upstream_blake3 | ||
# fancy way of just fetching the "c" folder (the only thing we want) | ||
git clone --branch '1.5.0' -n --depth=1 --filter=tree:0 'https://github.com/BLAKE3-team/BLAKE3.git' 'upstream_blake3' | ||
cd upstream_blake3 | ||
git sparse-checkout set --no-cone c | ||
git checkout | ||
rm -rf .git | ||
cd c | ||
# some stuff we don't need | ||
rm -rf blake3_c_rust_bindings test.py example.c main.c Makefile.testing CMakeLists.txt blake3-config.cmake.in README.md .gitignore | ||
divinity76 marked this conversation as resolved.
Show resolved
Hide resolved
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.