sha256.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* sha256.h
  2. *
  3. * Copyright (C) 2006-2017 wolfSSL Inc.
  4. *
  5. * This file is part of wolfSSL.
  6. *
  7. * wolfSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * wolfSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
  20. */
  21. /* code submitted by raphael.huck@efixo.com */
  22. #ifndef NO_SHA256
  23. #ifndef CTAO_CRYPT_SHA256_H
  24. #define CTAO_CRYPT_SHA256_H
  25. #include <wolfssl/wolfcrypt/sha256.h>
  26. #define InitSha256 wc_InitSha256
  27. #define Sha256Update wc_Sha256Update
  28. #define Sha256Final wc_Sha256Final
  29. #define Sha256Hash wc_Sha256Hash
  30. #ifdef WOLFSSL_SHA224
  31. #define InitSha224 wc_InitSha224
  32. #define Sha224Update wc_Sha224Update
  33. #define Sha224Final wc_Sha224Final
  34. #define Sha224Hash wc_Sha224Hash
  35. #endif
  36. #endif /* CTAO_CRYPT_SHA256_H */
  37. #endif /* NO_SHA256 */