diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-07-01 18:10:32 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-07-08 13:11:01 +0200 |
commit | ca38a4cc9e36647437b837b346a41981fb8880cd (patch) | |
tree | bb29de3cad2138f694bbfb4485d0d989caacc759 /crypto/Makefile.objs | |
parent | 9fd72468dfe40532df7c64d35054994058106c42 (diff) | |
download | qemu-ca38a4cc9e36647437b837b346a41981fb8880cd.zip qemu-ca38a4cc9e36647437b837b346a41981fb8880cd.tar.gz qemu-ca38a4cc9e36647437b837b346a41981fb8880cd.tar.bz2 |
crypto: introduce generic cipher API & built-in implementation
Introduce a generic cipher API and an implementation of it that
supports only the built-in AES and DES-RFB algorithms.
The test suite checks the supported algorithms + modes to
validate that every backend implementation is actually correctly
complying with the specs.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <1435770638-25715-5-git-send-email-berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'crypto/Makefile.objs')
-rw-r--r-- | crypto/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile.objs b/crypto/Makefile.objs index 9f70294..b050138 100644 --- a/crypto/Makefile.objs +++ b/crypto/Makefile.objs @@ -2,3 +2,4 @@ util-obj-y += init.o util-obj-y += hash.o util-obj-y += aes.o util-obj-y += desrfb.o +util-obj-y += cipher.o |