diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2023-11-17 19:18:45 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2023-11-17 19:32:11 +0900 |
| commit | 59950bcad6829d656fa58b1e1c10330535d2fef3 (patch) | |
| tree | 1243169fa38f63f19aa4f37c7d84cfc4af15bb2a /tests/core | |
| parent | 4587a55486a1c0367778c67fec50d895bf0dbd13 (diff) | |
core/crypto: Exile keccak, md5 and sha1 to legacy
In an perfect world these would just be removed, but the world is
imperfect, and people are forced to interact/interface with things
that are broken.
Diffstat (limited to 'tests/core')
| -rw-r--r-- | tests/core/crypto/test_core_crypto.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/core/crypto/test_core_crypto.odin b/tests/core/crypto/test_core_crypto.odin index 508af63ad..0e347a702 100644 --- a/tests/core/crypto/test_core_crypto.odin +++ b/tests/core/crypto/test_core_crypto.odin @@ -16,16 +16,16 @@ import "core:testing" import "core:fmt" import "core:strings" -import "core:crypto/md5" -import "core:crypto/sha1" import "core:crypto/sha2" import "core:crypto/sha3" -import "core:crypto/keccak" import "core:crypto/shake" import "core:crypto/blake2b" import "core:crypto/blake2s" import "core:crypto/sm3" import "core:crypto/siphash" +import "core:crypto/legacy/keccak" +import "core:crypto/legacy/md5" +import "core:crypto/legacy/sha1" import "core:os" TEST_count := 0 |