aboutsummaryrefslogtreecommitdiff
path: root/deps/crypto/crypto_types.h
blob: 697c9839c9f8f982623067f79c96fd3d3502d1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*********************************************************************
* Filename:   crypto_types.h
* Author:     Brad Conte (brad AT bradconte.com)
* Copyright:
* Disclaimer: This code is presented "as is" without any guarantees.
* Details:    Defines the API for the corresponding AES implementation.
*********************************************************************/

#ifndef CRYPTO_TYPES_H
#define CRYPTO_TYPES_H

typedef unsigned char BYTE;             // 8-bit byte
typedef unsigned int  WORD;             // 32-bit word, change to "long" for 16-bit machines

#endif