1
0

qemu: domain: Fix name of macro defining AES IV length

The initialization vector is a technical term by itself different from
the key.
This commit is contained in:
Peter Krempa 2016-05-12 17:13:09 +02:00
parent 677b94f487
commit 2a1a9808b1

View File

@ -254,8 +254,8 @@ struct _qemuDomainSecretPlain {
char *secret; char *secret;
}; };
# define QEMU_DOMAIN_AES_IV_KEY_LEN 16 /* 16 bytes for 128 bit random */ # define QEMU_DOMAIN_AES_IV_LEN 16 /* 16 bytes for 128 bit random */
/* initialization vector */ /* initialization vector */
typedef struct _qemuDomainSecretAES qemuDomainSecretAES; typedef struct _qemuDomainSecretAES qemuDomainSecretAES;
typedef struct _qemuDomainSecretAES *qemuDomainSecretAESPtr; typedef struct _qemuDomainSecretAES *qemuDomainSecretAESPtr;
struct _qemuDomainSecretAES { struct _qemuDomainSecretAES {