aboutsummaryrefslogtreecommitdiff
path: root/core/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'core/crypto')
-rw-r--r--core/crypto/README.md2
-rw-r--r--core/crypto/_blake2/blake2.odin2
-rw-r--r--core/crypto/_sha3/sha3.odin2
-rw-r--r--core/crypto/blake2b/blake2b.odin2
-rw-r--r--core/crypto/blake2s/blake2s.odin2
-rw-r--r--core/crypto/hash/hash.odin2
-rw-r--r--core/crypto/legacy/keccak/keccak.odin2
-rw-r--r--core/crypto/legacy/md5/md5.odin2
-rw-r--r--core/crypto/legacy/sha1/sha1.odin2
-rw-r--r--core/crypto/sha2/sha2.odin2
-rw-r--r--core/crypto/sha3/sha3.odin2
-rw-r--r--core/crypto/shake/shake.odin2
-rw-r--r--core/crypto/siphash/siphash.odin2
-rw-r--r--core/crypto/sm3/sm3.odin2
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.