This website requires JavaScript.
Explore
Help
Sign in
mirrors-yuzu-emu
/
unicorn
Watch
1
Star
0
Fork
You've already forked unicorn
0
mirror of
https://github.com/yuzu-emu/unicorn
synced
2024-11-25 22:37:50 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
86af3f249d
unicorn
/
qemu
/
crypto
/
Makefile.objs
3 lines
60 B
Text
Raw
Normal View
History
Unescape
Escape
crypto: introduce new module for computing hash digests Introduce a new crypto/ directory that will (eventually) contain all the cryptographic related code. This initially defines a wrapper for initializing gnutls and for computing hashes with gnutls. The former ensures that gnutls is guaranteed to be initialized exactly once in QEMU regardless of CLI args. The block quorum code currently fails to initialize gnutls so it only works by luck, if VNC server TLS is not requested. The hash APIs avoids the need to litter the rest of the code with preprocessor checks and simplifies callers by allocating the correct amount of memory for the requested hash. Backports commit ddbb0d09661f5fce21b335ba9aea8202d189b98e from qemu
2018-02-14 14:08:13 +00:00
util-obj-y = init.o
crypto: move built-in AES implementation into crypto/ To prepare for a generic internal cipher API, move the built-in AES implementation into the crypto/ directory Backports commit 6f2945cde60545aae7f31ab9d5ef29531efbc94f from qemu
2018-02-14 17:45:03 +00:00
util-obj-y += hash.o
util-obj-y += aes.o
Reference in a new issue
Copy permalink