From daab0e469df94c1d62ebad07989b9562f7d5bf80 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Thu, 14 Oct 2021 22:21:04 +0200 Subject: [PATCH] Unlicense --- LICENSES/ISC.txt | 15 --------------- UNLICENSE | 10 ++++++++++ chacha20.nimble | 2 +- src/chacha20.nim | 3 +-- 4 files changed, 12 insertions(+), 18 deletions(-) delete mode 100644 LICENSES/ISC.txt create mode 100644 UNLICENSE diff --git a/LICENSES/ISC.txt b/LICENSES/ISC.txt deleted file mode 100644 index a6d1964..0000000 --- a/LICENSES/ISC.txt +++ /dev/null @@ -1,15 +0,0 @@ -ISC License: - -Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") -Copyright (c) 1995-2003 by Internet Software Consortium - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD -TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. -IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL -DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING -OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/UNLICENSE b/UNLICENSE new file mode 100644 index 0000000..cde4ac6 --- /dev/null +++ b/UNLICENSE @@ -0,0 +1,10 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. + +In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. + +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 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. + +For more information, please refer to diff --git a/chacha20.nimble b/chacha20.nimble index 58f280a..3cc4620 100644 --- a/chacha20.nimble +++ b/chacha20.nimble @@ -3,7 +3,7 @@ version = "0.1.0" author = "Emery Hemingway" description = "ChaCha20 stream cipher" -license = "ISC" +license = "Unlicense" srcDir = "src" diff --git a/src/chacha20.nim b/src/chacha20.nim index e691a7e..a9f6ed3 100644 --- a/src/chacha20.nim +++ b/src/chacha20.nim @@ -1,6 +1,5 @@ # SPDX-FileCopyrightText: 2020 Emery Hemingway -# -# SPDX-License-Identifier: ISC +# SPDX-License-Identifier: Unlicense {.checks: off, optimization: speed.} -- 2.45.2