Webserver+3d print

Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers whirlpool.h Source File

whirlpool.h

Go to the documentation of this file.
00001 /**
00002  * @file whirlpool.h
00003  * @brief Whirlpool hash function
00004  *
00005  * @section License
00006  *
00007  * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
00008  *
00009  * This file is part of CycloneCrypto Open.
00010  *
00011  * This program is free software; you can redistribute it and/or
00012  * modify it under the terms of the GNU General Public License
00013  * as published by the Free Software Foundation; either version 2
00014  * of the License, or (at your option) any later version.
00015  *
00016  * This program is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU General Public License
00022  * along with this program; if not, write to the Free Software Foundation,
00023  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
00024  *
00025  * @author Oryx Embedded SARL (www.oryx-embedded.com)
00026  * @version 1.7.6
00027  **/
00028 
00029 #ifndef _WHIRLPOOL_H
00030 #define _WHIRLPOOL_H
00031 
00032 //Dependencies
00033 #include "crypto.h"
00034 
00035 //Whirlpool block size
00036 #define WHIRLPOOL_BLOCK_SIZE 64
00037 //Whirlpool digest size
00038 #define WHIRLPOOL_DIGEST_SIZE 64
00039 //Common interface for hash algorithms
00040 #define WHIRLPOOL_HASH_ALGO (&whirlpoolHashAlgo)
00041 
00042 
00043 /**
00044  * @brief Whirlpool algorithm context
00045  **/
00046 
00047 typedef struct
00048 {
00049    union
00050    {
00051       uint64_t h[8];
00052       uint8_t digest[64];
00053    };
00054    union
00055    {
00056       uint64_t x[8];
00057       uint8_t buffer[64];
00058    };
00059 
00060    uint64_t k[8];
00061    uint64_t l[8];
00062    uint64_t state[8];
00063 
00064    size_t size;
00065    uint64_t totalSize;
00066 } WhirlpoolContext;
00067 
00068 
00069 //Whirlpool related constants
00070 extern const HashAlgo whirlpoolHashAlgo;
00071 
00072 //Whirlpool related functions
00073 error_t whirlpoolCompute(const void *data, size_t length, uint8_t *digest);
00074 void whirlpoolInit(WhirlpoolContext *context);
00075 void whirlpoolUpdate(WhirlpoolContext *context, const void *data, size_t length);
00076 void whirlpoolFinal(WhirlpoolContext *context, uint8_t *digest);
00077 void whirlpoolProcessBlock(WhirlpoolContext *context);
00078 
00079 #endif
00080