summaryrefslogtreecommitdiff
path: root/lib/accelerated/intel/aes-x86.h
blob: 1fab36404f85ffc95841e58294bd709291e45ddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef AES_X86_H
# define AES_X86_H

#include <gnutls_int.h>

void register_x86_crypto (void);

#define AES_KEY_ALIGN_SIZE 4
#define AES_MAXNR 14
typedef struct
{
  /* We add few more integers to allow alignment 
   * on a 16-byte boundary.
   */
  uint32_t rd_key[4 * (AES_MAXNR + 1)+AES_KEY_ALIGN_SIZE];
} AES_KEY;

void aesni_ecb_encrypt (const unsigned char *in, unsigned char *out,
                        size_t len, const AES_KEY * key,
                        int enc);

void aesni_cbc_encrypt (const unsigned char *in, unsigned char *out,
                        size_t len, const AES_KEY * key,
                        unsigned char *ivec, const int enc);
int aesni_set_decrypt_key (const unsigned char *userKey, const int bits,
                           AES_KEY * key);
int aesni_set_encrypt_key (const unsigned char *userKey, const int bits,
                           AES_KEY * key);

void aesni_ctr32_encrypt_blocks(const unsigned char *in,
                           unsigned char *out,
                           size_t blocks,
                           const void *key,
                           const unsigned char *ivec);


const gnutls_crypto_cipher_st aes_gcm_struct;

#endif