cipher.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C) 2011-2016 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. /**
  32. * File: cipher.h
  33. * Description: Header file to wrap cipher related function from IPP for Provision Enclave
  34. *
  35. * Wrap for ipp function like aes-cmac, aes-gcm, rsa-oaep, sha512.
  36. */
  37. #ifndef _CIPHER_H
  38. #define _CIPHER_H
  39. #include "se_cdefs.h"
  40. #include "ae_ipp.h"
  41. #include "sgx_tseal.h"
  42. #include "epid_types.h"
  43. #include "se_types.h"
  44. #include "sgx_key.h"
  45. #include "provision_msg.h"
  46. #include "se_sig_rl.h"
  47. /*Function to generate a random parameter f (0<f<p) for epid private key which will be used in generation of ProvMsg3
  48. * return PVEC_SUCCESS on success
  49. */
  50. pve_status_t gen_epid_priv_f(
  51. const uint8_t* p, /*input, the modulo p*/
  52. PElemStr* f); /*output, the generated parameter f of EPID private key provided by enclave in big endian*/
  53. /*Function to return Intel EPID 2.0 parameter such as parameters for the elliptic curve group*/
  54. const EPID2Params*
  55. get_epid_para_cert();
  56. /*function to generate random number of num_bits
  57. * return PVEC_SUCCESS on success
  58. */
  59. pve_status_t pve_rng_generate(
  60. int num_bits, /*bits of random info to be generated*/
  61. unsigned char* p_rand_data); /*buffer to hold output, the length of it should be at least (num_bits+7)/8*/
  62. /*This function will do the rsa oaep encrypt with input src[0:src_len] and put the output to buffer src too
  63. * The function will assume that buffer src_len is no more than PVE_RSAOAEP_ENCRYPT_MAXLEN and the buffer size is at least PVE_RSA_KEY_BYTES
  64. * And the length of output data is always PVE_RSA_KEY_BYTES
  65. * return PVEC_SUCCESS on success
  66. */
  67. pve_status_t pve_rsa_oaep_encrypt(
  68. const uint8_t *src, /*input and output buffer*/
  69. uint32_t src_len,
  70. const IppsRSAPublicKeyState *rsa, /*input rsa public key*/
  71. uint8_t dst[PVE_RSA_KEY_BYTES]); /*output buffer*/
  72. /*Functions for piece meal aes_gcm encryption
  73. *aes_gcm encryption init function, 128 bits encryption used
  74. *The function will return PVEC_SUCCESS on success
  75. * If the function success, we must call pve_aes_gcm_encrypt_fini after the usage of it to free memory
  76. * if an error code is returned, no following pve_aes_gcm_encrypt_fini should be called
  77. */
  78. pve_status_t pve_aes_gcm_encrypt_init(
  79. const uint8_t *key, /*16 bytes key*/
  80. const uint8_t *iv, /*input initial vector. randomly generated value and encryption of different msg should use different iv*/
  81. uint32_t iv_len, /*length of initial vector, usually IV_SIZE*/
  82. const uint8_t *aad, /*AAD of AES-GCM, it could be NULL and aad_len must be 0 if it is NULL*/
  83. uint32_t aad_len, /*length of bytes of AAD*/
  84. IppsAES_GCMState **aes_gcm_state, /*state buffer to return, using pve_aes_gcm_encrypt_fini to free it if the function return success*/
  85. uint32_t *state_buffer_size); /*return buffer size here which used by fini function*/
  86. /*aes_gcm function to get mac value*/
  87. pve_status_t pve_aes_gcm_get_mac(IppsAES_GCMState *aes_gcm_state,uint8_t *mac);/*output mac value, the length of buffer is MAC_SIZE*/
  88. /*aes_gcm encryption fini function which is used to free memory for the aes_gcm_state*/
  89. void pve_aes_gcm_encrypt_fini(
  90. IppsAES_GCMState *aes_gcm_state, /*the state buffer*/
  91. uint32_t state_buffer_size); /*size of the buffer, the function need it to free the memory*/
  92. /*This function will do aes_gcm encryption update where both data before/after encryption will share same memory 'buf'
  93. * return PVEC_SUCCESS on success
  94. */
  95. pve_status_t pve_aes_gcm_encrypt_inplace_update(
  96. IppsAES_GCMState *aes_gcm_state, /*pointer to a state*/
  97. uint8_t *buf, /*start address to data before/after encryption*/
  98. uint32_t buf_len); /*length of data, for aes-gcm, the data before/after encryption has same size*/
  99. /*declare the function defined inside pve_verify_signature.cpp to Verify Intel ECDSA signature
  100. *return PVEC_SUCCESS if the signature verification passed
  101. *return PVEC_MSG_ERROR if signature not matched
  102. *return other error code for other kinds of error
  103. */
  104. pve_status_t verify_intel_ecdsa_signature(
  105. const uint8_t *p_sig_rl_sign, /*The ecdsa signature of message to be verify, the size of it should be 2*ECDSA_SIGN_SIZE which contains two big integer in big endian*/
  106. const se_ae_ecdsa_hash_t *p_sig_rl_hash);/*The sha256 hash value of message to be verify*/
  107. /*Function to verify the ECDSA signature of Intel Binary EPID Group Public Cert*/
  108. pve_status_t check_intel_signature_of_group_pub_cert(const signed_epid_group_cert_t *group_cert);
  109. /*Function to verify the ECDSA signature in a signed PEK*/
  110. sgx_status_t check_pek_signature(const signed_pek_t& signed_pek, uint8_t *result);
  111. #endif