mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std.crypto.ascon: disable Ascon-AEAD128 test on RISC-V with V support
This commit is contained in:
parent
1ac4c27d74
commit
7857bbd116
1 changed files with 2 additions and 0 deletions
|
|
@ -966,6 +966,8 @@ test "Ascon-CXOF128 with customization" {
|
|||
}
|
||||
|
||||
test "Ascon-AEAD128 round trip with various data sizes" {
|
||||
if (builtin.cpu.has(.riscv, .v) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest;
|
||||
|
||||
const key = [_]u8{ 0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF, 0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10 };
|
||||
const nonce = [_]u8{ 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, 0xCC, 0xDD, 0xEE, 0xFF };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue