sha3.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. /* This header can move into provider when legacy support is removed */
  10. #ifndef OSSL_INTERNAL_SHA3_H
  11. # define OSSL_INTERNAL_SHA3_H
  12. # pragma once
  13. # include <openssl/e_os2.h>
  14. # include <stddef.h>
  15. # define KECCAK1600_WIDTH 1600
  16. # define SHA3_MDSIZE(bitlen) (bitlen / 8)
  17. # define KMAC_MDSIZE(bitlen) 2 * (bitlen / 8)
  18. # define SHA3_BLOCKSIZE(bitlen) (KECCAK1600_WIDTH - bitlen * 2) / 8
  19. typedef struct keccak_st KECCAK1600_CTX;
  20. typedef size_t (sha3_absorb_fn)(void *vctx, const void *inp, size_t len);
  21. typedef int (sha3_final_fn)(unsigned char *md, void *vctx);
  22. typedef struct prov_sha3_meth_st
  23. {
  24. sha3_absorb_fn *absorb;
  25. sha3_final_fn *final;
  26. } PROV_SHA3_METHOD;
  27. struct keccak_st {
  28. uint64_t A[5][5];
  29. size_t block_size; /* cached ctx->digest->block_size */
  30. size_t md_size; /* output length, variable in XOF */
  31. size_t bufsz; /* used bytes in below buffer */
  32. unsigned char buf[KECCAK1600_WIDTH / 8 - 32];
  33. unsigned char pad;
  34. PROV_SHA3_METHOD meth;
  35. };
  36. void ossl_sha3_reset(KECCAK1600_CTX *ctx);
  37. int ossl_sha3_init(KECCAK1600_CTX *ctx, unsigned char pad, size_t bitlen);
  38. int ossl_keccak_kmac_init(KECCAK1600_CTX *ctx, unsigned char pad,
  39. size_t bitlen);
  40. int ossl_sha3_update(KECCAK1600_CTX *ctx, const void *_inp, size_t len);
  41. int ossl_sha3_final(unsigned char *md, KECCAK1600_CTX *ctx);
  42. size_t SHA3_absorb(uint64_t A[5][5], const unsigned char *inp, size_t len,
  43. size_t r);
  44. #endif /* OSSL_INTERNAL_SHA3_H */