mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-01 09:46:50 +08:00
fa1b3d0842
- (bal) OpenBSD CVS updates - markus@cvs.openbsd.org 2000/12/09 13:41:51 [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h] undo rijndael changes - markus@cvs.openbsd.org 2000/12/09 13:48:31 [rijndael.c] fix byte order bug w/o introducing new implementation - markus@cvs.openbsd.org 2000/12/09 14:08:27 [sftp-server.c] "" -> "." for realpath; from vinschen@redhat.com - markus@cvs.openbsd.org 2000/12/09 14:06:54 [ssh-agent.c] extern int optind; from stevesk@sweden.hp.com
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
#ifndef _RIJNDAEL_H_
|
|
#define _RIJNDAEL_H_
|
|
|
|
#include "config.h"
|
|
|
|
/* 1. Standard types for AES cryptography source code */
|
|
|
|
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 */
|
|
|
|
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 */
|
|
|
|
typedef struct _rijndael_ctx {
|
|
u4byte k_len;
|
|
int decrypt;
|
|
u4byte e_key[64];
|
|
u4byte d_key[64];
|
|
} rijndael_ctx;
|
|
|
|
|
|
/* 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 */
|
|
|
|
rijndael_ctx *rijndael_set_key __P((rijndael_ctx *, const u4byte *, u4byte, int));
|
|
void rijndael_encrypt __P((rijndael_ctx *, const u4byte *, u4byte *));
|
|
void rijndael_decrypt __P((rijndael_ctx *, const u4byte *, u4byte *));
|
|
|
|
#endif /* _RIJNDAEL_H_ */
|