fsl_hash.h 634 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright 2014 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. *
  6. */
  7. #ifndef _SHA_H
  8. #define _SHA_H
  9. #include <fsl_sec.h>
  10. #include <hash.h>
  11. #include "jr.h"
  12. /* We support at most 32 Scatter/Gather Entries.*/
  13. #define MAX_SG_32 32
  14. /*
  15. * Hash context contains the following fields
  16. * @sha_desc: Sha Descriptor
  17. * @sg_num: number of entries in sg table
  18. * @len: total length of buffer
  19. * @sg_tbl: sg entry table
  20. * @hash: index to the hash calculated
  21. */
  22. struct sha_ctx {
  23. uint32_t sha_desc[64];
  24. uint32_t sg_num;
  25. uint32_t len;
  26. struct sg_entry sg_tbl[MAX_SG_32];
  27. u8 hash[HASH_MAX_DIGEST_SIZE];
  28. };
  29. #endif