| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /* present80.c */
- /*
- This file is part of the AVR-Crypto-Lib.
- Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de)
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * present80.c
- * a implementation of the PRESENT block-cipher
- * author: Daniel Otte
- * email: daniel.otte@rub.de
- * license: GPLv3
- *
- * */
-
- #include <string.h>
- #include <stdint.h>
- #include <crypto/memxor.h>
- #include "present_common.h"
- #include <crypto/present80.h>
- static
- void key_update(uint8_t* buffer, uint8_t round){
- uint8_t j;
- union __attribute__((packed)){
- uint8_t v8[2];
- uint16_t v16;
- } tmp;
- /* rotate buffer 19 right */
- tmp.v16 = ((uint16_t*)buffer)[4];
- j=4;
- do{
- ((uint16_t*)buffer)[j] = ((uint16_t*)buffer)[j-1];
- }while(--j);
- ((uint16_t*)buffer)[0] = tmp.v16;
- uint8_t t8;
- j=0;
- t8 = (uint16_t)buffer[9] << (5);
- do{
- tmp.v8[1] = buffer[j];
- tmp.v16 >>= 3;
- buffer[j] = tmp.v8[1] | t8;
- t8 = tmp.v8[0] & 0xe0;
- }while(++j<10);
- /* rotating done now substitution */
- buffer[0] = (present_sbox(buffer[0])&0xF0) | ((buffer[0])&0x0F);
- /* xor with round counter */
- buffer[8] ^= round << 7;
- buffer[7] ^= round >> 1;
- }
- static
- void key_update_inv(uint8_t* buffer, uint8_t round){
- uint8_t j;
- union __attribute__((packed)){
- uint8_t v8[2];
- uint16_t v16;
- } tmp;
- /* xor with round counter */
- buffer[8] ^= round << 7;
- buffer[7] ^= round >> 1;
- /* rotating done now substitution */
- buffer[0] = (present_sbox_inv(buffer[0])&0xF0) | ((buffer[0])&0x0F);
- /* rotate buffer 19 left */
- tmp.v16 = ((uint16_t*)buffer)[0];
- j=0;
- do{
- ((uint16_t*)buffer)[j] = ((uint16_t*)buffer)[j+1];
- }while(++j<4);
- ((uint16_t*)buffer)[4] = tmp.v16;
- uint8_t t8;
- j=9;
- t8 = (uint16_t)buffer[0] >> (5);
- do{
- tmp.v8[0] = buffer[j];
- tmp.v16 <<= 3;
- buffer[j] = tmp.v8[0] | t8;
- t8 = tmp.v8[1] & 0x07;
- }while(j--);
- }
- void present80_init(const uint8_t* key, uint8_t keysize_b, present80_ctx_t* ctx){
- uint8_t i;
- memcpy(ctx->fwd_key, key, 10);
- memcpy(ctx->rev_key, key, 10);
- for(i=1; i<32; ++i){
- key_update(ctx->rev_key, i);
- }
- }
- void present80_enc(void* buffer, present80_ctx_t* ctx){
- present_generic_enc(buffer, (uint8_t*)ctx, 10, key_update);
- }
- void present80_dec(void* buffer, present80_ctx_t* ctx){
- present_generic_dec(buffer, (uint8_t*)ctx, 10, key_update_inv);
- }
- /*
- void present80_enc(void* buffer, present80_ctx_t* ctx){
- uint8_t i,j,tmp[8], k[10];
- memcpy(k, ctx->fwd_key, 10);
- memxor(buffer, k, 8);
- for(i=1; i<32; ++i){
- j = 7;
- do{
- tmp[j] = present_sbox(((uint8_t*)buffer)[j]);
- }while(j--);
- present_p(buffer, tmp);
- key_update(k, i);
- memxor(buffer, k, 8);
- }
- }
- void present80_dec(void* buffer, present80_ctx_t* ctx){
- uint8_t j,tmp[8], k[10];
- uint8_t i;
- memcpy(k, ctx->rev_key, 10);
- memxor(buffer, k, 8);
- i = 31;
- do{
- present_p(tmp, buffer);
- present_p(buffer, tmp);
- j = 7;
- do{
- ((uint8_t*)buffer)[j] = sbox_inv(((uint8_t*)buffer)[j]);
- }while(j--);
- key_update_inv(k, i);
- memxor(buffer, k, 8);
- }while(--i);
- }
- */
|