zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 9d08eba2e111e96133b51c14aca7dc071920b6d2 (tree)
parent b0da914ae6cc21202c0b533d5aa8fda01637ff43
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Tue,  6 Jan 2026 10:02:09 +0100

std.crypto.argon2: skip flaky argon2d test

https://codeberg.org/ziglang/zig/issues/30074

Diffstat:
Mlib/std/crypto/argon2.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/crypto/argon2.zig b/lib/std/crypto/argon2.zig @@ -627,6 +627,8 @@ pub fn strVerify( } test "argon2d" { + if (true) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/30074 + const password = [_]u8{0x01} ** 32; const salt = [_]u8{0x02} ** 16; const secret = [_]u8{0x03} ** 8;