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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
/*
* Copyright (c) 1990 Dennis Ferguson. All rights reserved.
*
* Commercial use is permitted only if products which are derived from
* or include this software are made available for purchase and/or use
* in Canada. Otherwise, redistribution and use in source and binary
* forms are permitted.
*/
/*
* des_ecb_encrypt.c - do an encryption in ECB mode
*/
#include "des.h"
#include "des_int.h"
#include "f_tables.h"
/*
* des_ecb_encrypt - {en,de}crypt a block in ECB mode
*/
int
mit_des_ecb_encrypt(in, out, schedule, encrypt)
const mit_des_cblock *in;
mit_des_cblock *out;
mit_des_key_schedule schedule;
int encrypt;
{
register unsigned KRB_INT32 left, right;
register unsigned KRB_INT32 temp;
register int i;
{
/*
* Need a temporary for copying the data in
*/
register unsigned char *datap;
/*
* Copy the input block into the registers
*/
datap = (unsigned char *)in;
GET_HALF_BLOCK(left, datap);
GET_HALF_BLOCK(right, datap);
}
/*
* Do the initial permutation.
*/
DES_INITIAL_PERM(left, right, temp);
/*
* Now the rounds. Use different code depending on whether it
* is an encryption or a decryption (gross, should keep both
* sets of keys in the key schedule instead).
*/
if (encrypt) {
register unsigned KRB_INT32 *kp;
kp = (unsigned KRB_INT32 *)schedule;
for (i = 0; i < 8; i++) {
DES_SP_ENCRYPT_ROUND(left, right, temp, kp);
DES_SP_ENCRYPT_ROUND(right, left, temp, kp);
}
} else {
register unsigned KRB_INT32 *kp;
/*
* Point kp past end of schedule
*/
kp = ((unsigned KRB_INT32 *)schedule) + (2 * 16);;
for (i = 0; i < 8; i++) {
DES_SP_DECRYPT_ROUND(left, right, temp, kp);
DES_SP_DECRYPT_ROUND(right, left, temp, kp);
}
}
/*
* Do the final permutation
*/
DES_FINAL_PERM(left, right, temp);
/*
* Finally, copy the result out a byte at a time
*/
{
register unsigned char *datap;
datap = (unsigned char *)out;
PUT_HALF_BLOCK(left, datap);
PUT_HALF_BLOCK(right, datap);
}
/*
* return nothing
*/
return (0);
}
|