2001-08-06 23:24:11 +02:00
|
|
|
/* $OpenBSD: rijndael.h,v 1.9 2001/07/30 16:23:30 stevesk Exp $ */
|
2001-03-05 07:50:47 +01:00
|
|
|
|
|
|
|
/* This is an independent implementation of the encryption algorithm: */
|
|
|
|
/* */
|
|
|
|
/* RIJNDAEL by Joan Daemen and Vincent Rijmen */
|
|
|
|
/* */
|
|
|
|
/* which is a candidate algorithm in the Advanced Encryption Standard */
|
|
|
|
/* programme of the US National Institute of Standards and Technology. */
|
2001-08-06 23:24:11 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
-----------------------------------------------------------------------
|
|
|
|
Copyright (c) 2001 Dr Brian Gladman <brg@gladman.uk.net>, Worcester, UK
|
|
|
|
|
|
|
|
TERMS
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
This software is provided 'as is' with no guarantees of correctness or
|
|
|
|
fitness for purpose.
|
|
|
|
-----------------------------------------------------------------------
|
|
|
|
*/
|
2001-01-29 08:39:26 +01:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
#ifndef _RIJNDAEL_H_
|
|
|
|
#define _RIJNDAEL_H_
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
#include "config.h"
|
2000-10-15 03:21:32 +02:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
/* 1. Standard types for AES cryptography source code */
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
typedef u_int8_t u1byte; /* an 8 bit unsigned character type */
|
|
|
|
typedef u_int16_t u2byte; /* a 16 bit unsigned integer type */
|
|
|
|
typedef u_int32_t u4byte; /* a 32 bit unsigned integer type */
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
typedef int8_t s1byte; /* an 8 bit signed character type */
|
|
|
|
typedef int16_t s2byte; /* a 16 bit signed integer type */
|
|
|
|
typedef int32_t s4byte; /* a 32 bit signed integer type */
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
typedef struct _rijndael_ctx {
|
|
|
|
u4byte k_len;
|
|
|
|
int decrypt;
|
|
|
|
u4byte e_key[64];
|
|
|
|
u4byte d_key[64];
|
|
|
|
} rijndael_ctx;
|
2000-10-14 07:23:11 +02:00
|
|
|
|
2000-12-10 02:55:37 +01:00
|
|
|
|
|
|
|
/* 2. Standard interface for AES cryptographic routines */
|
|
|
|
|
|
|
|
/* These are all based on 32 bit unsigned values and will therefore */
|
|
|
|
/* require endian conversions for big-endian architectures */
|
|
|
|
|
2001-05-11 01:26:11 +02:00
|
|
|
rijndael_ctx *
|
|
|
|
rijndael_set_key __P((rijndael_ctx *, const u4byte *, const u4byte, int));
|
2000-12-10 02:55:37 +01:00
|
|
|
void rijndael_encrypt __P((rijndael_ctx *, const u4byte *, u4byte *));
|
|
|
|
void rijndael_decrypt __P((rijndael_ctx *, const u4byte *, u4byte *));
|
|
|
|
|
|
|
|
#endif /* _RIJNDAEL_H_ */
|