corda/psw/ae/pve/cipher.h
llly 6662022bf8 Linux 1.7 Open Source Gold release
Signed-off-by: Li, Xun <xun.li@email.com>
2016-12-20 09:47:15 +09:00

107 lines
5.5 KiB
C

/*
* Copyright (C) 2011-2016 Intel Corporation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
/**
* File: cipher.h
* Description: Header file to wrap cipher related function from IPP for Provision Enclave such as ecdsa signature verification, aes-gcm, EPID private key generation
*/
#ifndef _CIPHER_H
#define _CIPHER_H
#if defined(PROVISIONSERVERSIM_EXPORTS) || defined(PvEUT)
#define OUTSIDE_ENCLAVE
#endif
#ifdef OUTSIDE_ENCLAVE
#include "provision_sim.h"
#endif
#include "se_cdefs.h"
#include "ae_ipp.h"
#include "sgx_tseal.h"
#include "epid/common/types.h"
#include "se_types.h"
#include "sgx_key.h"
#include "provision_msg.h"
#include "se_sig_rl.h"
/*Function to generate a random parameter f (0<f<p) for epid private key which will be used in generation of ProvMsg3, where P is number of elements in ECC Group used by EPID library*/
/* return PVEC_SUCCESS on success*/
pve_status_t gen_epid_priv_f(FpElemStr* f); /*output, the generated parameter f of EPID private key in big endian*/
/*function to generate random number of num_bits
return PVEC_SUCCESS on success*/
pve_status_t pve_rng_generate(
int num_bits, /*bits of random info to be generated*/
unsigned char* p_rand_data); /*buffer to hold output, the length of it should be at least (num_bits+7)/8*/
/*Functions for piece meal aes_gcm encryption
aes_gcm encryption init function, 128 bits encryption used
The function will return PVEC_SUCCESS on success
If the function success, we must call pve_aes_gcm_encrypt_fini after the usage of it to free memory
if an error code is returned, no following pve_aes_gcm_encrypt_fini should be called*/
pve_status_t pve_aes_gcm_encrypt_init(
const uint8_t *key, /*16 bytes key*/
const uint8_t *iv, /*input initial vector. randomly generated value and encryption of different msg should use different iv*/
uint32_t iv_len, /*length of initial vector, usually IV_SIZE*/
const uint8_t *aad, /*AAD of AES-GCM, it could be NULL and aad_len must be 0 if it is NULL*/
uint32_t aad_len, /*length of bytes of AAD*/
IppsAES_GCMState **aes_gcm_state, /*state buffer to return, using pve_aes_gcm_encrypt_fini to free it if the function return success*/
uint32_t *state_buffer_size); /*return buffer size here which will be used by fini function*/
/*aes_gcm function to get mac value*/
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*/
/*aes_gcm encryption fini function which is used to free memory for the aes_gcm_state*/
void pve_aes_gcm_encrypt_fini(
IppsAES_GCMState *aes_gcm_state, /*the state buffer*/
uint32_t state_buffer_size); /*size of the buffer, the function need it to free the memory*/
/*This function will do aes_gcm encryption update where both data before/after encryption will share same memory 'buf'
return PVEC_SUCCESS on success*/
pve_status_t pve_aes_gcm_encrypt_inplace_update(
IppsAES_GCMState *aes_gcm_state, /*pointer to a state*/
uint8_t *buf, /*start address to data before/after encryption*/
uint32_t buf_len); /*length of data, for aes-gcm, the data before/after encryption has same size*/
/*function defined inside pve_verify_signature.cpp to Verify ECDSA signature by EPID signing key
return PVEC_SUCCESS if the signature verification passed
return PVEC_MSG_ERROR if signature not matched
return other error code for other kinds of error*/
pve_status_t verify_epid_ecdsa_signature(
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 integers in big endian*/
const extended_epid_group_blob_t& xegb,
const se_ae_ecdsa_hash_t *p_sig_rl_hash); /*The sha256 hash value of message to be verify*/
/*Function to verify the ECDSA signature of Binary EPID Group Public Cert*/
pve_status_t check_signature_of_group_pub_cert(const signed_epid_group_cert_t *group_cert, const uint8_t* epid_sk);
#endif