mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
#ifndef QEMU_AES_H
|
|
#define QEMU_AES_H
|
|
|
|
#define AES_MAXNR 14
|
|
#define AES_BLOCK_SIZE 16
|
|
|
|
struct aes_key_st {
|
|
uint32_t rd_key[4 *(AES_MAXNR + 1)];
|
|
int rounds;
|
|
};
|
|
typedef struct aes_key_st AES_KEY;
|
|
|
|
/* FreeBSD/OpenSSL have their own AES functions with the same names in -lcrypto
|
|
* (which might be pulled in via curl), so redefine to avoid conflicts. */
|
|
#define AES_set_encrypt_key QEMU_AES_set_encrypt_key
|
|
#define AES_set_decrypt_key QEMU_AES_set_decrypt_key
|
|
#define AES_encrypt QEMU_AES_encrypt
|
|
#define AES_decrypt QEMU_AES_decrypt
|
|
|
|
int AES_set_encrypt_key(const unsigned char *userKey, const int bits,
|
|
AES_KEY *key);
|
|
int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
|
|
AES_KEY *key);
|
|
|
|
void AES_encrypt(const unsigned char *in, unsigned char *out,
|
|
const AES_KEY *key);
|
|
void AES_decrypt(const unsigned char *in, unsigned char *out,
|
|
const AES_KEY *key);
|
|
|
|
extern const uint8_t AES_sbox[256];
|
|
extern const uint8_t AES_isbox[256];
|
|
|
|
/*
|
|
AES_Te0[x] = S [x].[02, 01, 01, 03];
|
|
AES_Td0[x] = Si[x].[0e, 09, 0d, 0b];
|
|
*/
|
|
|
|
extern const uint32_t AES_Te0[256], AES_Td0[256];
|
|
|
|
#endif
|