sgx_sha256_128.cpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (C) 2011-2018 Intel Corporation. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * * Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * * Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in
  12. * the documentation and/or other materials provided with the
  13. * distribution.
  14. * * Neither the name of Intel Corporation nor the names of its
  15. * contributors may be used to endorse or promote products derived
  16. * from this software without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. *
  30. */
  31. #include "sgx_sha256_128.h"
  32. /*
  33. ** SHA256-128 implementation:
  34. ** out-length := x ¨C number of bits to output
  35. ** prefix := SHA-256(out-length)
  36. ** digest := SHA-256(prefix || m)
  37. ** output := truncate(digest, out-length) ? always return first out-length bits
  38. */
  39. sgx_status_t SGXAPI sgx_sha256_128_msg(const uint8_t *p_src, uint32_t src_len, sgx_sha256_128_hash_t *p_hash)
  40. {
  41. uint32_t outlength = 128; /*number of bits to output */
  42. uint32_t sha256_128_digest_length;
  43. sgx_status_t ret;
  44. sgx_sha256_hash_t digest = {0};
  45. uint8_t* digest_buffer = NULL;
  46. /* check potential overflow and NULL pointer */
  47. if( (UINT32_MAX-src_len) < sizeof(sgx_sha256_hash_t) || !p_hash || !p_src)
  48. return SGX_ERROR_INVALID_PARAMETER;
  49. sha256_128_digest_length = (uint32_t)sizeof(sgx_sha256_hash_t)+ src_len;
  50. digest_buffer = (uint8_t*)malloc(sha256_128_digest_length);
  51. if(!digest_buffer)
  52. return SGX_ERROR_OUT_OF_MEMORY;
  53. memset(digest_buffer, 0, sha256_128_digest_length);
  54. /* get prefix := SHA-256(out-length) */
  55. ret = sgx_sha256_msg((const uint8_t*)&outlength, sizeof(uint32_t), (sgx_sha256_hash_t*)digest_buffer);
  56. if(SGX_SUCCESS != ret)
  57. goto clean_up;
  58. /* get digest := SHA-256(prefix || m) */
  59. memcpy(digest_buffer+sizeof(sgx_sha256_hash_t), p_src, src_len); /* copy m to digest_buffer */
  60. ret = sgx_sha256_msg((const uint8_t*)digest_buffer, sha256_128_digest_length, &digest);
  61. if(SGX_SUCCESS != ret)
  62. goto clean_up;
  63. /* output truncated hash
  64. return the first 128 bits */
  65. memcpy(p_hash, &digest, sizeof(sgx_sha256_128_hash_t));
  66. clean_up:
  67. if(digest_buffer)
  68. free(digest_buffer);
  69. return ret;
  70. }