sha384.h
Go to the documentation of this file.
1 /**
2  * @file sha384.h
3  * @brief SHA-384 (Secure Hash Algorithm 384)
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 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.4.0
29  **/
30 
31 #ifndef _SHA384_H
32 #define _SHA384_H
33 
34 //Dependencies
35 #include "core/crypto.h"
36 #include "hash/sha512.h"
37 
38 //SHA-384 block size
39 #define SHA384_BLOCK_SIZE 128
40 //SHA-384 digest size
41 #define SHA384_DIGEST_SIZE 48
42 //Minimum length of the padding string
43 #define SHA384_MIN_PAD_SIZE 17
44 //Common interface for hash algorithms
45 #define SHA384_HASH_ALGO (&sha384HashAlgo)
46 
47 //C++ guard
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
51 
52 
53 /**
54  * @brief SHA-384 algorithm context
55  **/
56 
58 
59 
60 //SHA-384 related constants
61 extern const uint8_t SHA384_OID[9];
62 extern const HashAlgo sha384HashAlgo;
63 
64 //SHA-384 related functions
65 error_t sha384Compute(const void *data, size_t length, uint8_t *digest);
66 void sha384Init(Sha384Context *context);
67 void sha384Update(Sha384Context *context, const void *data, size_t length);
68 void sha384Final(Sha384Context *context, uint8_t *digest);
69 void sha384FinalRaw(Sha384Context *context, uint8_t *digest);
70 
71 //C++ guard
72 #ifdef __cplusplus
73 }
74 #endif
75 
76 #endif
General definitions for cryptographic algorithms.
error_t
Error codes.
Definition: error.h:43
uint8_t data[]
Definition: ethernet.h:222
void sha384FinalRaw(Sha384Context *context, uint8_t *digest)
Finish the SHA-384 message digest (no padding added)
void sha384Init(Sha384Context *context)
Initialize SHA-384 message digest context.
const uint8_t SHA384_OID[9]
Definition: sha384.c:47
error_t sha384Compute(const void *data, size_t length, uint8_t *digest)
Digest a message using SHA-384.
void sha384Update(Sha384Context *context, const void *data, size_t length)
Update the SHA-384 context with a portion of the message being hashed.
Sha512Context Sha384Context
SHA-384 algorithm context.
Definition: sha384.h:57
void sha384Final(Sha384Context *context, uint8_t *digest)
Finish the SHA-384 message digest.
const HashAlgo sha384HashAlgo
Definition: sha384.c:50
SHA-512 (Secure Hash Algorithm 512)
Common interface for hash algorithms.
Definition: crypto.h:1014
SHA-512 algorithm context.
Definition: sha512.h:62
uint8_t length
Definition: tcp.h:368