-
Notifications
You must be signed in to change notification settings - Fork 0
/
fdes.h
68 lines (61 loc) · 1.6 KB
/
fdes.h
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
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Copyright (c) 1990 David G. Koontz.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright notice and this paragraph are
* duplicated in all such forms and that any documentation,
* advertising materials, and other materials related to such
* distribution and use acknowledge that the software was developed
* by the above mentioned individual.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE
*/
/*
* fdes.h - faster implementation of DES algorithm
*/
#define BIT(x) ( 1 << x )
#define AA 0
#define BB 1
#define RR 1
#define LL 0
#define SHIFT_FOR_ENCRYPT 1
#define SHIFT_FOR_DECRYPT -1
/* How to find R Register Bits affecting S boxes: */
/* this is an ENDIAN referenced byte index */
#ifndef WORDS_BIGENDIAN /* BIG_ENDIAN */
#define S1 3
#define S2 7
#define S3 2
#define S4 6
#define S5 1
#define S6 5
#define S7 0
#define S8 4
#else /* LITTLE_ENDIAN */
#define S1 0
#define S2 4
#define S3 1
#define S4 5
#define S5 2
#define S6 6
#define S7 3
#define S8 7
#endif
union LR_block {
unsigned char string[8];
unsigned long LR[2];
};
union block_48 {
unsigned char string[8];
unsigned long AB[2];
unsigned short SxSy[4];
};
#define DES_MODE_ENCRYPT 1
#define DES_MODE_DECRYPT 0
#define DES_KEY_SHIFT 1
#define DES_KEY_NOSHIFT 0
void tac_des(union LR_block *);
void tac_des_loadkey(unsigned char *, int);
void tac_set_des_mode(int);