mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Add botan libraries to all/all_vendor.odin
This commit is contained in:
@@ -1,6 +1,23 @@
|
|||||||
package all
|
package all
|
||||||
|
|
||||||
import botan "vendor:botan"
|
import botan_bindings "vendor:botan/bindings"
|
||||||
|
import botan_blake2b "vendor:botan/blake2b"
|
||||||
|
import gost "vendor:botan/gost"
|
||||||
|
import keccak "vendor:botan/keccak"
|
||||||
|
import md4 "vendor:botan/md4"
|
||||||
|
import md5 "vendor:botan/md5"
|
||||||
|
import ripemd "vendor:botan/ripemd"
|
||||||
|
import sha1 "vendor:botan/sha1"
|
||||||
|
import sha2 "vendor:botan/sha2"
|
||||||
|
import sha3 "vendor:botan/sha3"
|
||||||
|
import shake "vendor:botan/shake"
|
||||||
|
import siphash "vendor:botan/siphash"
|
||||||
|
import skein512 "vendor:botan/skein512"
|
||||||
|
import sm3 "vendor:botan/sm3"
|
||||||
|
import streebog "vendor:botan/streebog"
|
||||||
|
import tiger "vendor:botan/tiger"
|
||||||
|
import whirlpool "vendor:botan/whirlpool"
|
||||||
|
|
||||||
import cgltf "vendor:cgltf"
|
import cgltf "vendor:cgltf"
|
||||||
// import commonmark "vendor:commonmark"
|
// import commonmark "vendor:commonmark"
|
||||||
import ENet "vendor:ENet"
|
import ENet "vendor:ENet"
|
||||||
@@ -30,7 +47,25 @@ import CA "vendor:darwin/QuartzCore"
|
|||||||
// NOTE(bill): only one can be checked at a time
|
// NOTE(bill): only one can be checked at a time
|
||||||
import lua_5_4 "vendor:lua/5.4"
|
import lua_5_4 "vendor:lua/5.4"
|
||||||
|
|
||||||
_ :: botan
|
_ :: botan_bindings
|
||||||
|
_ :: botan_blake2b
|
||||||
|
_ :: gost
|
||||||
|
_ :: keccak
|
||||||
|
_ :: md4
|
||||||
|
_ :: md5
|
||||||
|
_ :: ripemd
|
||||||
|
_ :: sha1
|
||||||
|
_ :: sha2
|
||||||
|
_ :: sha3
|
||||||
|
_ :: shake
|
||||||
|
_ :: siphash
|
||||||
|
_ :: skein512
|
||||||
|
_ :: sm3
|
||||||
|
_ :: streebog
|
||||||
|
_ :: tiger
|
||||||
|
_ :: whirlpool
|
||||||
|
|
||||||
|
|
||||||
_ :: cgltf
|
_ :: cgltf
|
||||||
// _ :: commonmark
|
// _ :: commonmark
|
||||||
_ :: ENet
|
_ :: ENet
|
||||||
|
|||||||
Reference in New Issue
Block a user