mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-13 14:51:26 -07:00
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.
This commit is contained in:
@@ -2,9 +2,9 @@ package all
|
||||
|
||||
import botan_bindings "vendor:botan/bindings"
|
||||
import botan_blake2b "vendor:botan/blake2b"
|
||||
import keccak "vendor:botan/keccak"
|
||||
import md5 "vendor:botan/md5"
|
||||
import sha1 "vendor:botan/sha1"
|
||||
import keccak "vendor:botan/legacy/keccak"
|
||||
import md5 "vendor:botan/legacy/md5"
|
||||
import sha1 "vendor:botan/legacy/sha1"
|
||||
import sha2 "vendor:botan/sha2"
|
||||
import sha3 "vendor:botan/sha3"
|
||||
import shake "vendor:botan/shake"
|
||||
|
||||
Reference in New Issue
Block a user