mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 2165477c0f
			
		
	
	
		2165477c0f
		
	
	
	
	
		
			
			GLib >= 2.16 provides GChecksum API which is good enough for md5, sha1, sha256 and sha512. Use this as a final fallback if neither nettle or gcrypt are available. This lets us remove the stub hash impl, and so callers can be sure those 4 algs are always available at compile time. They may still be disabled at runtime, so a check for qcrypto_hash_supports() is still best practice to report good error messages. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| crypto-obj-y = init.o
 | |
| crypto-obj-y += hash.o
 | |
| crypto-obj-$(CONFIG_NETTLE) += hash-nettle.o
 | |
| crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += hash-gcrypt.o
 | |
| crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT),n,y)) += hash-glib.o
 | |
| crypto-obj-y += aes.o
 | |
| crypto-obj-y += desrfb.o
 | |
| crypto-obj-y += cipher.o
 | |
| crypto-obj-y += tlscreds.o
 | |
| crypto-obj-y += tlscredsanon.o
 | |
| crypto-obj-y += tlscredsx509.o
 | |
| crypto-obj-y += tlssession.o
 | |
| crypto-obj-y += secret.o
 | |
| crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
 | |
| crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
 | |
| crypto-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS_RND),n,y)) += random-platform.o
 | |
| crypto-obj-y += pbkdf.o
 | |
| crypto-obj-$(CONFIG_NETTLE_KDF) += pbkdf-nettle.o
 | |
| crypto-obj-$(if $(CONFIG_NETTLE_KDF),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
 | |
| crypto-obj-y += ivgen.o
 | |
| crypto-obj-y += ivgen-essiv.o
 | |
| crypto-obj-y += ivgen-plain.o
 | |
| crypto-obj-y += ivgen-plain64.o
 | |
| crypto-obj-y += afsplit.o
 | |
| crypto-obj-y += xts.o
 | |
| crypto-obj-y += block.o
 | |
| crypto-obj-y += block-qcow.o
 | |
| crypto-obj-y += block-luks.o
 | |
| 
 | |
| # Let the userspace emulators avoid linking gnutls/etc
 | |
| crypto-aes-obj-y = aes.o
 | |
| 
 | |
| stub-obj-y += pbkdf-stub.o
 |