whirlpool.c File Reference

Whirlpool hash function. More...

#include "core/crypto.h"
#include "hash/whirlpool.h"

Go to the source code of this file.

Macros

#define TRACE_LEVEL   CRYPTO_TRACE_LEVEL
 
#define RHO(b, a, n, c)
 

Functions

error_t whirlpoolCompute (const void *data, size_t length, uint8_t *digest)
 Digest a message using Whirlpool. More...
 
void whirlpoolInit (WhirlpoolContext *context)
 Initialize Whirlpool message digest context. More...
 
void whirlpoolUpdate (WhirlpoolContext *context, const void *data, size_t length)
 Update the Whirlpool context with a portion of the message being hashed. More...
 
void whirlpoolFinal (WhirlpoolContext *context, uint8_t *digest)
 Finish the Whirlpool message digest. More...
 
void whirlpoolProcessBlock (WhirlpoolContext *context)
 Process message in 16-word blocks. More...
 

Variables

const uint8_t WHIRLPOOL_OID [6] = {0x28, 0xCF, 0x06, 0x03, 0x00, 0x37}
 
const HashAlgo whirlpoolHashAlgo
 

Detailed Description

Whirlpool hash function.

License

SPDX-License-Identifier: GPL-2.0-or-later

Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.

This file is part of CycloneCRYPTO Open.

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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Description

Whirlpool is a hash function that operates on messages less than 2^256 bits in length, and produces a message digest of 512 bits

Author
Oryx Embedded SARL (www.oryx-embedded.com)
Version
2.4.0

Definition in file whirlpool.c.

Macro Definition Documentation

◆ RHO

#define RHO (   b,
  a,
  n,
  c 
)
Value:
{ \
b = t[(a[n] >> 56) & 0xFF]; \
b ^= ROR64(t[(a[(n + 7) % 8] >> 48) & 0xFF], 8); \
b ^= ROR64(t[(a[(n + 6) % 8] >> 40) & 0xFF], 16); \
b ^= ROR64(t[(a[(n + 5) % 8] >> 32) & 0xFF], 24); \
b ^= ROR64(t[(a[(n + 4) % 8] >> 24) & 0xFF], 32); \
b ^= ROR64(t[(a[(n + 3) % 8] >> 16) & 0xFF], 40); \
b ^= ROR64(t[(a[(n + 2) % 8] >> 8) & 0xFF], 48); \
b ^= ROR64(t[a[(n + 1) % 8] & 0xFF], 56); \
b ^= c; \
}
#define ROR64(a, n)
Definition: crypto.h:783
uint8_t n
uint8_t t
Definition: lldp_ext_med.h:212
uint8_t c
Definition: ndp.h:514
uint8_t a
Definition: ndp.h:411

Definition at line 47 of file whirlpool.c.

◆ TRACE_LEVEL

#define TRACE_LEVEL   CRYPTO_TRACE_LEVEL

Definition at line 37 of file whirlpool.c.

Function Documentation

◆ whirlpoolCompute()

error_t whirlpoolCompute ( const void *  data,
size_t  length,
uint8_t *  digest 
)

Digest a message using Whirlpool.

Parameters
[in]dataPointer to the message being hashed
[in]lengthLength of the message
[out]digestPointer to the calculated digest
Returns
Error code

Definition at line 183 of file whirlpool.c.

◆ whirlpoolFinal()

void whirlpoolFinal ( WhirlpoolContext context,
uint8_t *  digest 
)

Finish the Whirlpool message digest.

Parameters
[in]contextPointer to the Whirlpool context
[out]digestCalculated digest (optional parameter)

Definition at line 291 of file whirlpool.c.

◆ whirlpoolInit()

void whirlpoolInit ( WhirlpoolContext context)

Initialize Whirlpool message digest context.

Parameters
[in]contextPointer to the Whirlpool context to initialize

Definition at line 228 of file whirlpool.c.

◆ whirlpoolProcessBlock()

void whirlpoolProcessBlock ( WhirlpoolContext context)

Process message in 16-word blocks.

Parameters
[in]contextPointer to the Whirlpool context

Definition at line 341 of file whirlpool.c.

◆ whirlpoolUpdate()

void whirlpoolUpdate ( WhirlpoolContext context,
const void *  data,
size_t  length 
)

Update the Whirlpool context with a portion of the message being hashed.

Parameters
[in]contextPointer to the Whirlpool context
[in]dataPointer to the buffer being hashed
[in]lengthLength of the buffer

Definition at line 252 of file whirlpool.c.

Variable Documentation

◆ WHIRLPOOL_OID

const uint8_t WHIRLPOOL_OID[6] = {0x28, 0xCF, 0x06, 0x03, 0x00, 0x37}

Definition at line 154 of file whirlpool.c.

◆ whirlpoolHashAlgo

const HashAlgo whirlpoolHashAlgo
Initial value:
=
{
"Whirlpool",
sizeof(WHIRLPOOL_OID),
NULL
}
error_t(* HashAlgoCompute)(const void *data, size_t length, uint8_t *digest)
Definition: crypto.h:956
void(* HashAlgoFinal)(void *context, uint8_t *digest)
Definition: crypto.h:963
void(* HashAlgoUpdate)(void *context, const void *data, size_t length)
Definition: crypto.h:961
void(* HashAlgoInit)(void *context)
Definition: crypto.h:959
#define TRUE
Definition: os_port.h:50
Whirlpool algorithm context.
Definition: whirlpool.h:57
error_t whirlpoolCompute(const void *data, size_t length, uint8_t *digest)
Digest a message using Whirlpool.
Definition: whirlpool.c:183
void whirlpoolInit(WhirlpoolContext *context)
Initialize Whirlpool message digest context.
Definition: whirlpool.c:228
void whirlpoolFinal(WhirlpoolContext *context, uint8_t *digest)
Finish the Whirlpool message digest.
Definition: whirlpool.c:291
void whirlpoolUpdate(WhirlpoolContext *context, const void *data, size_t length)
Update the Whirlpool context with a portion of the message being hashed.
Definition: whirlpool.c:252
const uint8_t WHIRLPOOL_OID[6]
Definition: whirlpool.c:154
#define WHIRLPOOL_BLOCK_SIZE
Definition: whirlpool.h:38
#define WHIRLPOOL_DIGEST_SIZE
Definition: whirlpool.h:40
#define WHIRLPOOL_MIN_PAD_SIZE
Definition: whirlpool.h:42

Definition at line 157 of file whirlpool.c.