VirtualBox

source: vbox/trunk/src/libs/openssl-3.1.3/include/internal/sha3.h@ 101211

Last change on this file since 101211 was 101211, checked in by vboxsync, 17 months ago

openssl-3.1.3: Applied and adjusted our OpenSSL changes to 3.1.2. bugref:10527

File size: 2.0 KB
Line 
1/*
2 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10/* This header can move into provider when legacy support is removed */
11#ifndef OSSL_INTERNAL_SHA3_H
12# define OSSL_INTERNAL_SHA3_H
13# ifndef RT_WITHOUT_PRAGMA_ONCE /* VBOX */
14# pragma once
15# endif /* VBOX */
16
17# include <openssl/e_os2.h>
18# include <stddef.h>
19
20# define KECCAK1600_WIDTH 1600
21# define SHA3_MDSIZE(bitlen) (bitlen / 8)
22# define KMAC_MDSIZE(bitlen) 2 * (bitlen / 8)
23# define SHA3_BLOCKSIZE(bitlen) (KECCAK1600_WIDTH - bitlen * 2) / 8
24
25typedef struct keccak_st KECCAK1600_CTX;
26
27typedef size_t (sha3_absorb_fn)(void *vctx, const void *inp, size_t len);
28typedef int (sha3_final_fn)(unsigned char *md, void *vctx);
29
30typedef struct prov_sha3_meth_st
31{
32 sha3_absorb_fn *absorb;
33 sha3_final_fn *final;
34} PROV_SHA3_METHOD;
35
36struct keccak_st {
37 uint64_t A[5][5];
38 size_t block_size; /* cached ctx->digest->block_size */
39 size_t md_size; /* output length, variable in XOF */
40 size_t bufsz; /* used bytes in below buffer */
41 unsigned char buf[KECCAK1600_WIDTH / 8 - 32];
42 unsigned char pad;
43 PROV_SHA3_METHOD meth;
44};
45
46void ossl_sha3_reset(KECCAK1600_CTX *ctx);
47int ossl_sha3_init(KECCAK1600_CTX *ctx, unsigned char pad, size_t bitlen);
48int ossl_keccak_kmac_init(KECCAK1600_CTX *ctx, unsigned char pad,
49 size_t bitlen);
50int ossl_sha3_update(KECCAK1600_CTX *ctx, const void *_inp, size_t len);
51int ossl_sha3_final(unsigned char *md, KECCAK1600_CTX *ctx);
52
53size_t SHA3_absorb(uint64_t A[5][5], const unsigned char *inp, size_t len,
54 size_t r);
55
56#endif /* OSSL_INTERNAL_SHA3_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette