tiger.h
Go to the documentation of this file.
1 /**
2  * @file tiger.h
3  * @brief Tiger hash function
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2025 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneCRYPTO Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.5.0
29  **/
30 
31 #ifndef _TIGER_H
32 #define _TIGER_H
33 
34 //Dependencies
35 #include "core/crypto.h"
36 
37 //Tiger block size
38 #define TIGER_BLOCK_SIZE 64
39 //Tiger digest size
40 #define TIGER_DIGEST_SIZE 24
41 //Minimum length of the padding string
42 #define TIGER_MIN_PAD_SIZE 9
43 //Common interface for hash algorithms
44 #define TIGER_HASH_ALGO (&tigerHashAlgo)
45 
46 //C++ guard
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50 
51 
52 /**
53  * @brief Tiger algorithm context
54  **/
55 
56 typedef struct
57 {
58  uint64_t h[3];
59  union
60  {
61  uint64_t x[8];
62  uint8_t buffer[64];
63  };
64  size_t size;
65  uint64_t totalSize;
66 } TigerContext;
67 
68 
69 //Tiger related constants
70 extern const uint8_t TIGER_OID[9];
71 extern const HashAlgo tigerHashAlgo;
72 
73 //Tiger related functions
74 error_t tigerCompute(const void *data, size_t length, uint8_t *digest);
75 void tigerInit(TigerContext *context);
76 void tigerUpdate(TigerContext *context, const void *data, size_t length);
77 void tigerFinal(TigerContext *context, uint8_t *digest);
78 void tigerProcessBlock(TigerContext *context);
79 
80 //C++ guard
81 #ifdef __cplusplus
82 }
83 #endif
84 
85 #endif
uint8_t x
Definition: lldp_ext_med.h:211
size_t size
Definition: tiger.h:64
uint8_t data[]
Definition: ethernet.h:222
uint64_t totalSize
Definition: tiger.h:65
error_t tigerCompute(const void *data, size_t length, uint8_t *digest)
Digest a message using Tiger.
Definition: tiger.c:386
uint8_t h
Definition: ndp.h:302
error_t
Error codes.
Definition: error.h:43
void tigerInit(TigerContext *context)
Initialize Tiger message digest context.
Definition: tiger.c:431
General definitions for cryptographic algorithms.
uint8_t length
Definition: tcp.h:375
void tigerUpdate(TigerContext *context, const void *data, size_t length)
Update the Tiger context with a portion of the message being hashed.
Definition: tiger.c:452
Tiger algorithm context.
Definition: tiger.h:57
const uint8_t TIGER_OID[9]
Definition: tiger.c:357
const HashAlgo tigerHashAlgo
Definition: tiger.c:360
void tigerProcessBlock(TigerContext *context)
Process message in 16-word blocks.
Definition: tiger.c:536
Common interface for hash algorithms.
Definition: crypto.h:1082
void tigerFinal(TigerContext *context, uint8_t *digest)
Finish the Tiger message digest.
Definition: tiger.c:491