2004-08-02 01:54:53 +04:00
|
|
|
#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;
|
|
|
|
|
2016-06-07 01:05:35 +03:00
|
|
|
/* 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. */
|
2014-06-16 19:02:07 +04:00
|
|
|
#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
|
|
|
|
|
2004-08-02 01:54:53 +04:00
|
|
|
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);
|
|
|
|
|
2014-03-13 18:13:25 +04:00
|
|
|
extern const uint8_t AES_sbox[256];
|
|
|
|
extern const uint8_t AES_isbox[256];
|
2014-03-13 18:13:26 +04:00
|
|
|
|
2023-07-31 11:40:43 +03:00
|
|
|
/*
|
|
|
|
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];
|
|
|
|
|
2004-08-02 01:54:53 +04:00
|
|
|
#endif
|