Deleted Added
full compact
rijndael.h (69587) rijndael.h (76259)
1/* $OpenBSD: rijndael.h,v 1.7 2001/03/01 03:38:33 deraadt Exp $ */
2
3/* This is an independent implementation of the encryption algorithm: */
4/* */
5/* RIJNDAEL by Joan Daemen and Vincent Rijmen */
6/* */
7/* which is a candidate algorithm in the Advanced Encryption Standard */
8/* programme of the US National Institute of Standards and Technology. */
9/* */
10/* Copyright in this implementation is held by Dr B R Gladman but I */
11/* hereby give permission for its free direct or derivative use subject */
12/* to acknowledgment of its origin and compliance with any conditions */
13/* that the originators of the algorithm place on its exploitation. */
14/* */
15/* Dr Brian Gladman (gladman@seven77.demon.co.uk) 14th January 1999 */
16
1#ifndef _RIJNDAEL_H_
2#define _RIJNDAEL_H_
3
4/* 1. Standard types for AES cryptography source code */
5
6typedef u_int8_t u1byte; /* an 8 bit unsigned character type */
7typedef u_int16_t u2byte; /* a 16 bit unsigned integer type */
8typedef u_int32_t u4byte; /* a 32 bit unsigned integer type */

--- 23 unchanged lines hidden ---
17#ifndef _RIJNDAEL_H_
18#define _RIJNDAEL_H_
19
20/* 1. Standard types for AES cryptography source code */
21
22typedef u_int8_t u1byte; /* an 8 bit unsigned character type */
23typedef u_int16_t u2byte; /* a 16 bit unsigned integer type */
24typedef u_int32_t u4byte; /* a 32 bit unsigned integer type */

--- 23 unchanged lines hidden ---