Skip to content

Commit

Permalink
license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
divinity76 committed Feb 3, 2024
1 parent f12caf0 commit 1954b37
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.REDIST.BINS
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
18. avifinfo (ext/standard/libavifinfo) see ext/standard/libavifinfo/LICENSE
19. xxHash (ext/hash/xxhash)
20. Lexbor (ext/dom/lexbor/lexbor) see ext/dom/lexbor/LICENSE
21. BLAKE3 (ext/hash/blake3) see ext/hash/blake3/upstream_blake3/LICENSE


3. pcre2lib (ext/pcre)
Expand Down
16 changes: 16 additions & 0 deletions ext/hash/hash_blake3.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Hans Henrik Bergan <hans@loltek.net> |
+----------------------------------------------------------------------+
*/

#include "php_hash.h"
#include "php_hash_blake3.h"
#include "blake3/upstream_blake3/c/blake3.h"
Expand Down
16 changes: 16 additions & 0 deletions ext/hash/php_hash_blake3.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Hans Henrik Bergan <hans@loltek.net> |
+----------------------------------------------------------------------+
*/

#ifndef PHP_HASH_BLAKE3_H
#define PHP_HASH_BLAKE3_H

Expand Down

0 comments on commit 1954b37

Please sign in to comment.