blob: 63687055f298dfbfa7a185b8f06e889a22b65b8b (
plain) (
blame)
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
|
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0"
*
* Written by Nir Drucker and Shay Gueron
* AWS Cryptographic Algorithms Group.
* (ndrucker@amazon.com, gueron@amazon.com)
*/
#pragma once
#include "cleanup.h"
#include "types.h"
#include "utilities.h"
#include <openssl/sha.h>
#define SHA384_HASH_SIZE 48ULL
#define SHA384_HASH_QWORDS (SHA384_HASH_SIZE / 8)
typedef struct sha384_hash_s
{
union {
uint8_t raw[SHA384_HASH_SIZE];
uint64_t qw[SHA384_HASH_QWORDS];
} u;
} sha384_hash_t;
bike_static_assert(sizeof(sha384_hash_t) == SHA384_HASH_SIZE, sha384_hash_size);
typedef sha384_hash_t sha_hash_t;
_INLINE_ void
sha_hash_cleanup(IN OUT sha_hash_t *o)
{
secure_clean(o->u.raw, sizeof(*o));
}
_INLINE_ int
sha(OUT sha_hash_t *hash_out, IN const uint32_t byte_len, IN const uint8_t *msg)
{
SHA384(msg, byte_len, hash_out->u.raw);
return 1;
}
|