index
:
zig
0.10.x
0.11.x
0.12.x
0.14.x
0.15.x
0.7.x
0.8.x
0.9.x
ArrayList-reserve
Io.net
aro
ast-node-methods
async-await-demo
autofix
ci-perf-comment
ci-scripts
ci-tarballs
cli
comptime-allocator
elfv2-dyn
fixes
fuzz-macos
hcs
incr-bug
io-threaded-no-queue
jobserver
json-diagnostics
llvm-ir-nosanitize-metadata
macos-debug-info
main
make-vs-configure
master
more-doctests
new-pkg-hash
powerpc64le
restricted-function-pointers
rework-comptime-mutation
sans-aro
sha1-stream
spork8
stage2-async
threadpool
threadtheft
wasm-linker-writer
wrangle-writer-buffering
General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. https://ziglang.org
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
std
/
crypto
/
blake3.zig
Age
Commit message (
Expand
)
Author
2025-11-07
std.crypto: improve KT documentation, use key_length for B3 key length (#25807)
Frank Denis
2025-11-01
Implement threaded BLAKE3 (#25587)
Frank Denis
2025-10-15
Faster BLAKE3 implementation (#25574)
Frank Denis
2025-08-28
std.Io: delete GenericWriter
Andrew Kelley
2025-07-13
std.crypto: remove `inline` from most functions
Andrew Kelley
2025-07-07
std.io: deprecated Reader/Writer; introduce new API
Andrew Kelley
2024-02-25
x86_64: implement more shuffles
Jacob Young
2024-02-25
x86_64: implement `@shuffle`
Jacob Young
2023-11-19
lib: correct unnecessary uses of 'var'
mlugg
2023-10-31
std.builtin.Endian: make the tags lower case
Andrew Kelley
2023-10-31
mem: fix ub in writeInt
Jacob Young
2023-10-23
x86_64: implement enough to pass unicode tests
Jacob Young
2023-10-22
Revert "Revert "Merge pull request #17637 from jacobly0/x86_64-test-std""
Jacob Young
2023-10-22
Revert "Merge pull request #17637 from jacobly0/x86_64-test-std"
Andrew Kelley
2023-10-21
x86_64: fix bugs and disable erroring tests
Jacob Young
2023-06-24
all: migrate code to new cast builtin syntax
mlugg
2023-06-16
migration: std.math.{min, min3, max, max3} -> `@min` & `@max`
r00ster91
2023-04-28
update codebase to use `@memset` and `@memcpy`
Andrew Kelley
2023-03-06
std: reenable vectorized code with the C backend
Jacob Young
2023-02-18
update std lib and compiler sources to new for loop syntax
Andrew Kelley
2023-02-18
update existing behavior tests and std lib to new for loop semantics
Andrew Kelley
2022-11-01
std: avoid vector usage with the C backend
Jacob Young
2022-06-03
std: update tests to stage2 semantics
Veikka Tuominen
2022-03-27
std.crypto.blake3: use `@Vector` instead of `std.meta.Vector`
Andrew Kelley
2021-11-20
std: add `writer` methods on all crypto.hash types (#10168)
Meghan
2021-10-04
migrate from `std.Target.current` to `@import("builtin").target`
Andrew Kelley
2021-09-19
Update `hash` & `crypto` benchmarks run comment (#9790)
Ali Chraghi
2021-08-24
remove redundant license headers from zig standard library
Andrew Kelley
2021-06-21
fix code broken from previous commit
Jacob G-W
2021-05-20
Run `zig fmt` on src/ and lib/std/
Isaac Freund
2021-05-08
std: update usage of std.testing
Veikka Tuominen
2021-02-21
std: Add more error checking in hexToBytes
LemonBoy
2021-02-10
Convert inline fn to callconv(.Inline) everywhere
Tadeo Kondrak
2020-12-31
Year++
Frank Denis
2020-11-05
Now that they support vectors, use math.rot{l,r}
Frank Denis
2020-10-25
std/crypto: vectorize BLAKE3
Frank Denis
2020-10-17
std/crypto: make the whole APIs more consistent
Frank Denis
2020-08-21
Hash functions now accept an option set
Frank Denis
2020-08-20
Remove the reset() function from hash functions
Frank Denis
2020-08-20
Repair crypto/benchmark; add BLAKE2b256
Frank Denis
2020-08-20
add license header to all std lib files
Andrew Kelley
2020-05-04
std: fix blake3 assignment to constant
Vexu
2020-02-02
blake3: Workaround issue #4373 with named types
Jay Petacat
2020-02-02
blake3: Replace `&arr` with `arr[0..]` for slice args
Jay Petacat
2020-02-02
blake3: Name and const pointer refinements
Jay Petacat
2020-02-02
blake3: Convert `*const [n]u8` types to `[n]u8`
Jay Petacat
2020-02-01
crypto: Add BLAKE3 hashing algorithm
Jay Petacat