From 2bd6dde951a0f3b94694fba8f7b130c962af2b15 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Sun, 3 Dec 2023 19:31:37 +0100 Subject: [PATCH 1/3] CHACHA: chacha.cc: fix missing vector include Signed-off-by: Tim Janik --- chacha/chacha.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/chacha/chacha.cc b/chacha/chacha.cc index 77a7840..942a9e4 100644 --- a/chacha/chacha.cc +++ b/chacha/chacha.cc @@ -7,6 +7,7 @@ #include "chacha.hh" +#include #include #include #include From de4222e66e67a538caf3cd29f9ddc57a5029ef23 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 13 Dec 2023 03:19:50 +0100 Subject: [PATCH 2/3] CHACHA: README.md: clarify Public Domain dedication Signed-off-by: Tim Janik --- chacha/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chacha/README.md b/chacha/README.md index 9829b00..a7d6de9 100644 --- a/chacha/README.md +++ b/chacha/README.md @@ -6,3 +6,5 @@ implementation for generic CPUs (ALU), and the SSE2/3 and AVX2 instruction sets. The implementations are all based on Public Domain code by D. J. Bernstein and others. + +The source code is dedicated to the Public Domain under the [Unlicense](https://unlicense.org/UNLICENSE). From 6ce18f8eed54e63ca7a534cf230e753081ed10de Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 13 Dec 2023 03:20:02 +0100 Subject: [PATCH 3/3] SHISHUA: README.md: clarify Public Domain dedication Signed-off-by: Tim Janik --- shishua/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shishua/README.md b/shishua/README.md index 537e6b8..f7d27d6 100644 --- a/shishua/README.md +++ b/shishua/README.md @@ -6,3 +6,5 @@ implementation for generic CPUs (ALU), and it includes SSE2/3 and AVX2 instruction set veriants. The implementations are all based on Public Domain code from [Thaddée Tyl](https://github.com/espadrine): https://github.com/espadrine/shishua + +The source code is dedicated to the Public Domain under the [Unlicense](https://unlicense.org/UNLICENSE).