summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/C/Aes.h
blob: 5aa60955d53f4a39cec6e2b910d20683126f882e (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Aes.h -- AES encryption / decryption
2009-02-07 : Igor Pavlov : Public domain */

#ifndef __AES_H
#define __AES_H

#include "Types.h"

#ifdef __cplusplus
extern "C" {
#endif

#define AES_BLOCK_SIZE 16

typedef struct
{
  unsigned numRounds2; /* = numRounds / 2 */
  UInt32 rkey[(14 + 1) * 4];
} CAes;

/* Call AesGenTables one time before other AES functions */
void AesGenTables(void);

/* keySize = 16 or 24 or 32 (bytes) */
void Aes_SetKeyEncode(CAes *p, const Byte *key, unsigned keySize);
void Aes_SetKeyDecode(CAes *p, const Byte *key, unsigned keySize);

/* Aes_Encode32 and Aes_Decode32 functions work with little-endian words.
  src and dest are pointers to 4 UInt32 words.
  arc and dest can point to same block */
void Aes_Encode32(const CAes *p, UInt32 *dest, const UInt32 *src);
void Aes_Decode32(const CAes *p, UInt32 *dest, const UInt32 *src);

typedef struct
{
  UInt32 prev[4];
  CAes aes;
} CAesCbc;

void AesCbc_Init(CAesCbc *p, const Byte *iv); /* iv size is AES_BLOCK_SIZE */

/* AesCbc_Encode and AesCbc_Decode:
  if (res <= size): Filter have converted res bytes
  if (res > size):  Filter have not converted anything. And it needs at
                    least res = AES_BLOCK_SIZE bytes to convert one block */

SizeT AesCbc_Encode(CAesCbc *p, Byte *data, SizeT size);
SizeT AesCbc_Decode(CAesCbc *p, Byte *data, SizeT size);

#ifdef __cplusplus
}
#endif

#endif