Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJP Aumasson <jeanphilippe.aumasson@gmail.com>2016-10-11 23:00:39 +0300
committerJP Aumasson <jeanphilippe.aumasson@gmail.com>2016-10-11 23:00:39 +0300
commitc44e34b3a56209fe7870b154981dbf2f3d0842c2 (patch)
tree1e2b023cab5d1e45a4c94051d2e7d7e2e2fbf584
parent2994ec582cac88257bae59ad1a39dfc6469a36c9 (diff)
copyright notice
-rw-r--r--ref/blake2xb-ref.c18
-rw-r--r--ref/blake2xs-ref.c18
2 files changed, 36 insertions, 0 deletions
diff --git a/ref/blake2xb-ref.c b/ref/blake2xb-ref.c
index 56d7cb8..6c69750 100644
--- a/ref/blake2xb-ref.c
+++ b/ref/blake2xb-ref.c
@@ -1,3 +1,21 @@
+/*
+ BLAKE2 reference source code package - reference C implementations
+
+ Copyright 2016, JP Aumasson <jeanphilippe.aumasson@gmail.com>.
+ Copyright 2016, Samuel Neves <sneves@dei.uc.pt>.
+
+ You may use this under the terms of the CC0, the OpenSSL Licence, or
+ the Apache Public License 2.0, at your option. The terms of these
+ licenses can be found at:
+
+ - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
+ - OpenSSL license : https://www.openssl.org/source/license.html
+ - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
+
+ More information about the BLAKE2 hash function can be found at
+ https://blake2.net.
+*/
+
#include <stdint.h>
#include <string.h>
#include <stdio.h>
diff --git a/ref/blake2xs-ref.c b/ref/blake2xs-ref.c
index cb299d7..58cc684 100644
--- a/ref/blake2xs-ref.c
+++ b/ref/blake2xs-ref.c
@@ -1,3 +1,21 @@
+/*
+ BLAKE2 reference source code package - reference C implementations
+
+ Copyright 2016, JP Aumasson <jeanphilippe.aumasson@gmail.com>.
+ Copyright 2016, Samuel Neves <sneves@dei.uc.pt>.
+
+ You may use this under the terms of the CC0, the OpenSSL Licence, or
+ the Apache Public License 2.0, at your option. The terms of these
+ licenses can be found at:
+
+ - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
+ - OpenSSL license : https://www.openssl.org/source/license.html
+ - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
+
+ More information about the BLAKE2 hash function can be found at
+ https://blake2.net.
+*/
+
#include <stdint.h>
#include <string.h>
#include <stdio.h>