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
/
pbkdf2.zig
Age
Commit message (
Expand
)
Author
2023-11-19
lib: correct unnecessary uses of 'var'
mlugg
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-05-01
Fix PBKDF2 docstring comment
jcalabro
2023-04-28
update codebase to use `@memset` and `@memcpy`
Andrew Kelley
2023-02-18
update std lib and compiler sources to new for loop syntax
Andrew Kelley
2021-08-24
remove redundant license headers from zig standard library
Andrew Kelley
2021-05-08
std: update usage of std.testing
Veikka Tuominen
2021-04-20
std/crypto: use finer-grained error sets in function signatures (#8558)
Frank Denis
2021-03-17
pbkdf2: use std.math.divCeil()
Frank Denis
2021-03-16
crypto/pbkdf2: use snake_case for variables like everywhere else
Frank Denis
2021-03-16
crypto/pbkdf2: simplify the check for the max number of iterations
Frank Denis
2021-03-14
Use a unified error set for std/crypto/*
Frank Denis
2020-12-31
Year++
Frank Denis
2020-09-16
Add an error set
Rocknest
2020-09-14
flip condition
Rocknest
2020-09-13
fix build
Rocknest
2020-09-13
Convert asserts to errors, make sure nothing overflows
Rocknest
2020-09-13
pbkdf2 offset into dk should be usize, not u64.
Rob Napier
2020-09-13
Use comptime to expose public method to doc system
Rob Napier
2020-09-13
Extract kdf.zig to provide namespace documentation
Rob Napier
2020-09-13
Explicitly reference std.crypto.kdf in test case
Rob Napier
2020-09-13
Improve doc text
Rob Napier
2020-09-12
pbkdf2 "very large dklen test" should just check for crashes
Rob Napier
2020-09-12
Replace Hash function with Prf. Correct offset bit-width.
Rob Napier
2020-09-12
Review comments from pbkdf2.zig
Rob Napier
2020-09-11
Add crypto.kdf.pbkdf2
Rob Napier