diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-28 14:38:25 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-28 14:38:25 +0000 |
| commit | 842cfee0f3eacbef5fa5f0dbd392a500ebad93ae (patch) | |
| tree | 8400e8366c4f4456a52ab4f5519922038695890a /core/crypto | |
| parent | d390ae2f97fbfe7fd582574e6db923d6992e9c6a (diff) | |
Change Odin's LICENSE to zlib from BSD 3-clause
This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
Diffstat (limited to 'core/crypto')
| -rw-r--r-- | core/crypto/README.md | 2 | ||||
| -rw-r--r-- | core/crypto/_blake2/blake2.odin | 2 | ||||
| -rw-r--r-- | core/crypto/_sha3/sha3.odin | 2 | ||||
| -rw-r--r-- | core/crypto/blake2b/blake2b.odin | 2 | ||||
| -rw-r--r-- | core/crypto/blake2s/blake2s.odin | 2 | ||||
| -rw-r--r-- | core/crypto/hash/hash.odin | 2 | ||||
| -rw-r--r-- | core/crypto/legacy/keccak/keccak.odin | 2 | ||||
| -rw-r--r-- | core/crypto/legacy/md5/md5.odin | 2 | ||||
| -rw-r--r-- | core/crypto/legacy/sha1/sha1.odin | 2 | ||||
| -rw-r--r-- | core/crypto/sha2/sha2.odin | 2 | ||||
| -rw-r--r-- | core/crypto/sha3/sha3.odin | 2 | ||||
| -rw-r--r-- | core/crypto/shake/shake.odin | 2 | ||||
| -rw-r--r-- | core/crypto/siphash/siphash.odin | 2 | ||||
| -rw-r--r-- | core/crypto/sm3/sm3.odin | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/core/crypto/README.md b/core/crypto/README.md index 303b1f625..5065a6d02 100644 --- a/core/crypto/README.md +++ b/core/crypto/README.md @@ -29,4 +29,4 @@ constant-time byte comparison. ## License -This library is made available under the BSD-3 license.
\ No newline at end of file +This library is made available under the zlib license.
\ No newline at end of file diff --git a/core/crypto/_blake2/blake2.odin b/core/crypto/_blake2/blake2.odin index 89fbe3a7a..487e93b83 100644 --- a/core/crypto/_blake2/blake2.odin +++ b/core/crypto/_blake2/blake2.odin @@ -2,7 +2,7 @@ package _blake2 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/_sha3/sha3.odin b/core/crypto/_sha3/sha3.odin index 52b3fbda9..02b0b6578 100644 --- a/core/crypto/_sha3/sha3.odin +++ b/core/crypto/_sha3/sha3.odin @@ -2,7 +2,7 @@ package _sha3 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/blake2b/blake2b.odin b/core/crypto/blake2b/blake2b.odin index c2822cbaf..4590ca40e 100644 --- a/core/crypto/blake2b/blake2b.odin +++ b/core/crypto/blake2b/blake2b.odin @@ -9,7 +9,7 @@ package blake2b /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/blake2s/blake2s.odin b/core/crypto/blake2s/blake2s.odin index c2a07a6dc..37da53360 100644 --- a/core/crypto/blake2s/blake2s.odin +++ b/core/crypto/blake2s/blake2s.odin @@ -9,7 +9,7 @@ package blake2s /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/hash/hash.odin b/core/crypto/hash/hash.odin index 66d9201cd..ecb33b9d0 100644 --- a/core/crypto/hash/hash.odin +++ b/core/crypto/hash/hash.odin @@ -2,7 +2,7 @@ package crypto_hash /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/legacy/keccak/keccak.odin b/core/crypto/legacy/keccak/keccak.odin index 369eee0d9..ec6af2565 100644 --- a/core/crypto/legacy/keccak/keccak.odin +++ b/core/crypto/legacy/keccak/keccak.odin @@ -10,7 +10,7 @@ package keccak /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/legacy/md5/md5.odin b/core/crypto/legacy/md5/md5.odin index 2d58837c3..d9d74d498 100644 --- a/core/crypto/legacy/md5/md5.odin +++ b/core/crypto/legacy/md5/md5.odin @@ -12,7 +12,7 @@ package md5 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/legacy/sha1/sha1.odin b/core/crypto/legacy/sha1/sha1.odin index ea74997af..35b228f69 100644 --- a/core/crypto/legacy/sha1/sha1.odin +++ b/core/crypto/legacy/sha1/sha1.odin @@ -13,7 +13,7 @@ package sha1 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/sha2/sha2.odin b/core/crypto/sha2/sha2.odin index 9290650e7..0b34cd6a1 100644 --- a/core/crypto/sha2/sha2.odin +++ b/core/crypto/sha2/sha2.odin @@ -9,7 +9,7 @@ package sha2 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/sha3/sha3.odin b/core/crypto/sha3/sha3.odin index 738e7be0d..2ca70963a 100644 --- a/core/crypto/sha3/sha3.odin +++ b/core/crypto/sha3/sha3.odin @@ -12,7 +12,7 @@ package sha3 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/shake/shake.odin b/core/crypto/shake/shake.odin index 6fcf5dd8d..f959aaf5f 100644 --- a/core/crypto/shake/shake.odin +++ b/core/crypto/shake/shake.odin @@ -11,7 +11,7 @@ package shake /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. diff --git a/core/crypto/siphash/siphash.odin b/core/crypto/siphash/siphash.odin index a091dfd4d..5fede4f55 100644 --- a/core/crypto/siphash/siphash.odin +++ b/core/crypto/siphash/siphash.odin @@ -11,7 +11,7 @@ package siphash /* Copyright 2022 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog: Initial implementation. diff --git a/core/crypto/sm3/sm3.odin b/core/crypto/sm3/sm3.odin index ce62cfe49..186331d92 100644 --- a/core/crypto/sm3/sm3.odin +++ b/core/crypto/sm3/sm3.odin @@ -8,7 +8,7 @@ package sm3 /* Copyright 2021 zhibog - Made available under the BSD-3 license. + Made available under Odin's license. List of contributors: zhibog, dotbmp: Initial implementation. |