forked from Xilinx/bootgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash.cpp
executable file
·102 lines (88 loc) · 3.35 KB
/
hash.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/******************************************************************************
* Copyright 2015-2019 Xilinx, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
/*
-------------------------------------------------------------------------------
*********************************************** H E A D E R F I L E S ***
-------------------------------------------------------------------------------
*/
#include "hash.h"
/*
-------------------------------------------------------------------------------
***************************************************** F U N C T I O N S ***
-------------------------------------------------------------------------------
*/
/******************************************************************************/
uint8_t HashSha2::GetHashLength(void)
{
return SHA2_LENGTH_BYTES;
}
/******************************************************************************/
uint8_t HashSha2::UpdateHash(const void* data, size_t length)
{
uint8_t errorCode = SHA256_Update(&ctx, data, length);
/* Send the inverted error code, to be consistent with the SHA3 algo */
return (!errorCode);
}
/******************************************************************************/
uint8_t HashSha2::FinalHash(uint8_t* hashout)
{
uint8_t errorCode = SHA256_Final(hashout, &ctx);
/* Send the inverted error code, to be consistent with the SHA3 algo */
return (!errorCode);
}
/******************************************************************************/
void HashSha2::CalculateHash(bool flag, const uint8_t *data, size_t length, uint8_t* out)
{
SHA256(data, length, out);
}
/******************************************************************************/
std::string HashSha2::GetHashFileExtension(void)
{
return ".sha256";
}
/******************************************************************************/
uint8_t HashSha3::GetHashLength(void)
{
return SHA3_LENGTH_BYTES;
}
/******************************************************************************/
uint8_t HashSha3::UpdateHash(const void* data, size_t length)
{
size_t length_in_bits = length * 8;
return Update(&ctx, (BitSequence*)data, length_in_bits);
}
/******************************************************************************/
uint8_t HashSha3::FinalHash(uint8_t* hashout)
{
return Final(&ctx, hashout, SHA3_LENGTH_BYTES);
}
/******************************************************************************/
void HashSha3::CalculateHash(bool nist, const uint8_t *data, size_t length, uint8_t* out)
{
if (nist)
{
crypto_hash_NIST_SHA3(out, data, length);
}
else
{
crypto_hash(out, data, length);
}
}
/******************************************************************************/
std::string HashSha3::GetHashFileExtension(void)
{
return ".sha384";
}