]> git.cryptolib.org Git - avr-crypto-lib.git/blob - serpent.c
7af779dcfaf4deb7e7e26b069992c274c56b68cd
[avr-crypto-lib.git] / serpent.c
1 /* serpent.c */
2 /*
3     This file is part of the Crypto-avr-lib/microcrypt-lib.
4     Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 /* serpent.c
20  * a bitsliced implementation of the serpent cipher for avr microcontrollers
21  * author: Daniel Otte 
22  * email:  daniel.otte@rub.de
23  * license: GPLv3
24  */
25
26 #include <stdint.h>
27 #include <string.h> /* memset() */
28 #include <avr/pgmspace.h>
29 #include "memxor.h"
30 #include "serpent.h"
31 #include "serpent-sboxes.h"
32
33 /******************************************************************************/
34
35 uint32_t rotl32(uint32_t a, uint8_t n){
36         return ((a<<n) | (a>>(32-n)));
37 }
38
39
40 uint32_t rotr32(uint32_t a, uint8_t n){
41         return ((a>>n) | (a<<(32-n)));
42 }
43
44
45 #define X0 (((uint32_t*)b)[0])
46 #define X1 (((uint32_t*)b)[1])
47 #define X2 (((uint32_t*)b)[2])
48 #define X3 (((uint32_t*)b)[3])
49
50 void serpent_lt(uint8_t *b);
51 /*
52 static void serpent_lt(uint8_t *b){
53         X0 = rotl32(X0, 13);
54         X2 = rotl32(X2,  3);
55         X1 ^= X0 ^ X2;
56         X3 ^= X2 ^ (X0 << 3);
57         X1 = rotl32(X1, 1);
58         X3 = rotl32(X3, 7);
59         X0 ^= X1 ^ X3;
60         X2 ^= X3 ^ (X1 << 7);
61         X0 = rotl32(X0, 5);
62         X2 = rotr32(X2, 10);
63 }
64 */
65
66 static void serpent_inv_lt(uint8_t *b);
67
68 /*
69 static void serpent_inv_lt(uint8_t *b){
70         X2 = rotl32(X2, 10);
71         X0 = rotr32(X0, 5);
72         X2 ^= X3 ^ (X1 << 7);
73         X0 ^= X1 ^ X3;
74         X3 = rotr32(X3, 7);
75         X1 = rotr32(X1, 1);
76         X3 ^= X2 ^ (X0 << 3);
77         X1 ^= X0 ^ X2;
78         X2 = rotr32(X2,  3);
79         X0 = rotr32(X0, 13);
80 }
81 */
82
83 uint32_t serpent_gen_w(uint32_t * b, uint8_t i);
84 /*
85 #define GOLDEN_RATIO 0x9e3779b9l
86
87 static uint32_t serpent_gen_w(uint32_t * b, uint8_t i){
88         uint32_t ret;
89         ret = b[0] ^ b[3] ^ b[5] ^ b[7] ^ GOLDEN_RATIO ^ (uint32_t)i;
90         ret = rotl32(ret, 11);
91         return ret;
92
93 */
94 #if 0
95 void serpent_init(const void* key, uint16_t keysize_b, serpent_ctx_t* ctx){
96         uint32_t buffer[8];
97         uint8_t i,j;
98         if(keysize_b<256){
99                 /* keysize is less than 256 bit, padding needed */
100                 memset(buffer, 0, 32);
101                 memcpy(buffer, key, (keysize_b+7)/8);
102                 ((uint8_t*)buffer)[keysize_b/8] |= 1<<(keysize_b%8);
103         } else {
104                 /* keysize is 256 bit */
105                 memcpy(buffer, key, 32); 
106         }
107         for(i=0; i<33; ++i){
108                 for(j=0; j<4; ++j){
109                         ctx->k[i][j] = serpent_gen_w(buffer, i*4+j);
110                         memmove(buffer, &(buffer[1]), 7*4); /* shift buffer one to the "left" */
111                         buffer[7] = ctx->k[i][j];
112                 }
113         }
114         for(i=0; i<33; ++i){
115                 sbox128(ctx->k[i],3-i);
116         }
117 }
118 #endif
119
120 void serpent_enc(void* buffer, const serpent_ctx_t* ctx){
121         uint8_t i;
122         for(i=0; i<31; ++i){
123                 memxor(buffer, ctx->k[i], 16);
124                 sbox128(buffer, i);
125                 serpent_lt((uint8_t*)buffer);
126         }
127         memxor(buffer, ctx->k[i], 16);
128         sbox128(buffer, i);
129         ++i;
130         memxor(buffer, ctx->k[i], 16);
131 }
132
133 void serpent_dec(void* buffer, const serpent_ctx_t* ctx){
134         int8_t i=32;
135         
136         memxor(buffer, ctx->k[i], 16);
137         --i;
138         inv_sbox128(buffer, i);
139         memxor((uint8_t*)buffer, ctx->k[i], 16);
140         --i;
141         for(; i>=0; --i){
142                 serpent_inv_lt(buffer);
143                 inv_sbox128(buffer, i);
144                 memxor(buffer, ctx->k[i], 16);
145         }
146 }
147
148
149
150
151
152