This website requires JavaScript.
Explore
Help
Register
Sign In
yuzu
/
unicorn
Watch
1
Star
0
Fork
You've already forked unicorn
0
mirror of
https://github.com/yuzu-emu/unicorn.git
synced
2025-01-11 22:55:30 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
b318251716
unicorn
/
qemu
/
crypto
/
Makefile.objs
3 lines
60 B
Makefile
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