Message ID | 20220613084531.8086-4-helei.sig11@bytedance.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | crypto: Introduce ECDSA algorithm | expand |
On 13/6/22 10:45, Lei He wrote: > Move 'include "qemu/osdep.h"' from rsakey.h to rsakey.c. > > Signed-off-by: lei he <helei.sig11@bytedance.com> > --- > crypto/rsakey.c | 1 + > crypto/rsakey.h | 1 - > 2 files changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
On Mon, Jun 13, 2022 at 04:45:27PM +0800, Lei He wrote: > Move 'include "qemu/osdep.h"' from rsakey.h to rsakey.c. > > Signed-off-by: lei he <helei.sig11@bytedance.com> > --- > crypto/rsakey.c | 1 + > crypto/rsakey.h | 1 - > 2 files changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> With regards, Daniel
diff --git a/crypto/rsakey.c b/crypto/rsakey.c index cc40e072f0..dcdbd9ec57 100644 --- a/crypto/rsakey.c +++ b/crypto/rsakey.c @@ -19,6 +19,7 @@ * */ +#include "qemu/osdep.h" #include "rsakey.h" void qcrypto_akcipher_rsakey_free(QCryptoAkCipherRSAKey *rsa_key) diff --git a/crypto/rsakey.h b/crypto/rsakey.h index 974b76f659..ba88974d12 100644 --- a/crypto/rsakey.h +++ b/crypto/rsakey.h @@ -22,7 +22,6 @@ #ifndef QCRYPTO_RSAKEY_H #define QCRYPTO_RSAKEY_H -#include "qemu/osdep.h" #include "qemu/host-utils.h" #include "crypto/akcipher.h"
Move 'include "qemu/osdep.h"' from rsakey.h to rsakey.c. Signed-off-by: lei he <helei.sig11@bytedance.com> --- crypto/rsakey.c | 1 + crypto/rsakey.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-)