From 60d1e675d2b9c45c88fc01790205a64db6a43627 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 8 Oct 2020 14:41:18 +0200 Subject: [PATCH] aes/aesni is not based on a Go implementation, only aes/soft is Don't blame them for our bugs :) --- lib/std/crypto/aes/aesni.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/crypto/aes/aesni.zig b/lib/std/crypto/aes/aesni.zig index 47dd029be..c1c077a98 100644 --- a/lib/std/crypto/aes/aesni.zig +++ b/lib/std/crypto/aes/aesni.zig @@ -3,7 +3,6 @@ // This file is part of [zig](https://ziglang.org/), which is MIT licensed. // The MIT license requires this copyright notice to be included in all copies // and substantial portions of the software. -// Based on Go stdlib implementation const std = @import("../../std.zig"); const mem = std.mem;