3 This file is part of the AVR-Crypto-Lib.
4 Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de)
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.
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.
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/>.
20 * a bitsliced implementation of the serpent cipher for avr microcontrollers
22 * email: daniel.otte@rub.de
27 #include <string.h> /* memset() */
28 #include <avr/pgmspace.h>
31 #include "serpent-sboxes.h"
33 /******************************************************************************/
35 uint32_t rotl32(uint32_t a, uint8_t n){
36 return ((a<<n) | (a>>(32-n)));
40 uint32_t rotr32(uint32_t a, uint8_t n){
41 return ((a>>n) | (a<<(32-n)));
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])
50 static void serpent_lt(uint8_t *b){
63 static void serpent_inv_lt(uint8_t *b){
76 #define GOLDEN_RATIO 0x9e3779b9l
78 static uint32_t serpent_gen_w(uint32_t * b, uint8_t i){
80 ret = b[0] ^ b[3] ^ b[5] ^ b[7] ^ GOLDEN_RATIO ^ (uint32_t)i;
81 ret = rotl32(ret, 11);
85 void serpent_init(const void *key, uint16_t keysize_b, serpent_ctx_t *ctx){
89 /* keysize is less than 256 bit, padding needed */
90 memset(buffer, 0, 32);
91 memcpy(buffer, key, (keysize_b+7)/8);
92 ((uint8_t*)buffer)[keysize_b/8] |= 1<<(keysize_b%8);
94 /* keysize is 256 bit */
95 memcpy(buffer, key, 32);
99 ctx->k[i][j] = serpent_gen_w(buffer, i*4+j);
100 memmove(buffer, &(buffer[1]), 7*4); /* shift buffer one to the "left" */
101 buffer[7] = ctx->k[i][j];
105 sbox128(ctx->k[i],3-i);
109 void serpent_enc(void *buffer, const serpent_ctx_t *ctx){
112 memxor(buffer, ctx->k[i], 16);
114 serpent_lt((uint8_t*)buffer);
116 memxor(buffer, ctx->k[i], 16);
119 memxor(buffer, ctx->k[i], 16);
122 void serpent_dec(void *buffer, const serpent_ctx_t *ctx){
125 memxor(buffer, ctx->k[i], 16);
127 inv_sbox128(buffer, i);
128 memxor((uint8_t*)buffer, ctx->k[i], 16);
131 serpent_inv_lt(buffer);
132 inv_sbox128(buffer, i);
133 memxor(buffer, ctx->k[i], 16);