aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJP Aumasson <jp@taurusgroup.ch>2022-10-22 07:05:46 +0200
committerJP Aumasson <jp@taurusgroup.ch>2022-10-22 07:05:46 +0200
commita2f0c897be3faa291bf3ddc8f78fb09e5be275c7 (patch)
tree5b97d1d263d54e60c484cb64661b1c6dce05c985
parentMerge pull request #46 from devendranaga/master (diff)
downloadsiphash-a2f0c897be3faa291bf3ddc8f78fb09e5be275c7.tar.gz
siphash-a2f0c897be3faa291bf3ddc8f78fb09e5be275c7.tar.xz
duallicense
-rw-r--r--LICENSE_CC0 (renamed from LICENSE)0
-rw-r--r--LICENSE_MIT7
-rw-r--r--README.md2
3 files changed, 9 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE_CC0
index 3bbbc1e..3bbbc1e 100644
--- a/LICENSE
+++ b/LICENSE_CC0
diff --git a/LICENSE_MIT b/LICENSE_MIT
new file mode 100644
index 0000000..a6b4722
--- /dev/null
+++ b/LICENSE_MIT
@@ -0,0 +1,7 @@
+Copyright 2012-2024 JP Aumasson
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
index 366edd7..fa4839e 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,8 @@
[![License:
CC0-1.0](https://licensebuttons.net/l/zero/1.0/80x15.png)](http://creativecommons.org/publicdomain/zero/1.0/)
+[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
+
SipHash is a family of pseudorandom functions (PRFs) optimized for speed on short messages.
This is the reference C code of SipHash: portable, simple, optimized for clarity and debugging.