123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- /*
- * Copyright (C) 2011-2018 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:
- * sgx_rsa_encryption.cpp
- * Description:
- * Wrapper for rsa operation functions
- *
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "sgx_error.h"
- #include "sgx_tcrypto.h"
- #include "se_tcrypto_common.h"
- #include <openssl/bn.h>
- #include <openssl/rsa.h>
- #include <openssl/evp.h>
- #include <openssl/err.h>
- #include "ssl_wrapper.h"
- sgx_status_t sgx_create_rsa_key_pair(int n_byte_size, int e_byte_size, unsigned char *p_n, unsigned char *p_d, unsigned char *p_e,
- unsigned char *p_p, unsigned char *p_q, unsigned char *p_dmp1,
- unsigned char *p_dmq1, unsigned char *p_iqmp)
- {
- if (n_byte_size <= 0 || e_byte_size <= 0 || p_n == NULL || p_d == NULL || p_e == NULL ||
- p_p == NULL || p_q == NULL || p_dmp1 == NULL || p_dmq1 == NULL || p_iqmp == NULL) {
- return SGX_ERROR_INVALID_PARAMETER;
- }
- sgx_status_t ret_code = SGX_ERROR_UNEXPECTED;
- RSA* rsa_ctx = NULL;
- BIGNUM* bn_n = NULL;
- BIGNUM* bn_e = NULL;
- BIGNUM* tmp_bn_e = NULL;
- BIGNUM* bn_d = NULL;
- BIGNUM* bn_dmp1 = NULL;
- BIGNUM* bn_dmq1 = NULL;
- BIGNUM* bn_iqmp = NULL;
- BIGNUM* bn_q = NULL;
- BIGNUM* bn_p = NULL;
- do {
- //create new rsa ctx
- //
- rsa_ctx = RSA_new();
- if (rsa_ctx == NULL) {
- ret_code = SGX_ERROR_OUT_OF_MEMORY;
- break;
- }
- //generate rsa key pair, with n_byte_size*8 mod size and p_e exponent
- //
- tmp_bn_e = BN_lebin2bn(p_e, e_byte_size, tmp_bn_e);
- BN_CHECK_BREAK(tmp_bn_e);
- if (RSA_generate_key_ex(rsa_ctx, n_byte_size * 8, tmp_bn_e, NULL) != 1) {
- break;
- }
- //validate RSA key size match input parameter n size
- //
- int gen_rsa_size = RSA_size(rsa_ctx);
- if (gen_rsa_size != n_byte_size) {
- break;
- }
- //get RSA key internal values
- //
- RSA_get0_key(rsa_ctx, (const BIGNUM**)(&bn_n), (const BIGNUM**)(&bn_e), (const BIGNUM**)(&bn_d));
- RSA_get0_factors(rsa_ctx, (const BIGNUM**)(&bn_p), (const BIGNUM**)(&bn_q));
- RSA_get0_crt_params(rsa_ctx, (const BIGNUM**)(&bn_dmp1), (const BIGNUM**)(&bn_dmq1), (const BIGNUM**)(&bn_iqmp));
- //copy the generated key to input pointers
- //
- if (!BN_bn2lebinpad(bn_n, p_n, BN_num_bytes(bn_n)) ||
- !BN_bn2lebinpad(bn_d, p_d, BN_num_bytes(bn_d)) ||
- !BN_bn2lebinpad(bn_e, p_e, BN_num_bytes(bn_e)) ||
- !BN_bn2lebinpad(bn_p, p_p, BN_num_bytes(bn_p)) ||
- !BN_bn2lebinpad(bn_q, p_q, BN_num_bytes(bn_q)) ||
- !BN_bn2lebinpad(bn_dmp1, p_dmp1, BN_num_bytes(bn_dmp1)) ||
- !BN_bn2lebinpad(bn_dmq1, p_dmq1, BN_num_bytes(bn_dmq1)) ||
- !BN_bn2lebinpad(bn_iqmp, p_iqmp, BN_num_bytes(bn_iqmp))) {
- break;
- }
- ret_code = SGX_SUCCESS;
- } while (0);
- //free rsa ctx (RSA_free also free related BNs obtained in RSA_get functions)
- //
- RSA_free(rsa_ctx);
- BN_clear_free(tmp_bn_e);
- return ret_code;
- }
- sgx_status_t sgx_create_rsa_priv2_key(int prime_size, int exp_size, const unsigned char *g_rsa_key_e, const unsigned char *g_rsa_key_p, const unsigned char *g_rsa_key_q,
- const unsigned char *g_rsa_key_dmp1, const unsigned char *g_rsa_key_dmq1, const unsigned char *g_rsa_key_iqmp,
- void **new_pri_key2)
- {
- if (prime_size <= 0 || exp_size <= 0 || new_pri_key2 == NULL ||
- g_rsa_key_e == NULL || g_rsa_key_p == NULL || g_rsa_key_q == NULL || g_rsa_key_dmp1 == NULL ||
- g_rsa_key_dmq1 == NULL || g_rsa_key_iqmp == NULL) {
- return SGX_ERROR_INVALID_PARAMETER;
- }
- bool rsa_memory_manager = 0;
- EVP_PKEY *rsa_key = NULL;
- RSA *rsa_ctx = NULL;
- sgx_status_t ret_code = SGX_ERROR_UNEXPECTED;
- BIGNUM* n = NULL;
- BIGNUM* e = NULL;
- BIGNUM* d = NULL;
- BIGNUM* dmp1 = NULL;
- BIGNUM* dmq1 = NULL;
- BIGNUM* iqmp = NULL;
- BIGNUM* q = NULL;
- BIGNUM* p = NULL;
- BN_CTX* tmp_ctx = NULL;
- do {
- tmp_ctx = BN_CTX_new();
- NULL_BREAK(tmp_ctx);
- n = BN_new();
- NULL_BREAK(n);
- // convert RSA params, factors to BNs
- //
- p = BN_lebin2bn(g_rsa_key_p, (prime_size / 2), p);
- BN_CHECK_BREAK(p);
- q = BN_lebin2bn(g_rsa_key_q, (prime_size / 2), q);
- BN_CHECK_BREAK(q);
- dmp1 = BN_lebin2bn(g_rsa_key_dmp1, (prime_size / 2), dmp1);
- BN_CHECK_BREAK(dmp1);
- dmq1 = BN_lebin2bn(g_rsa_key_dmq1, (prime_size / 2), dmq1);
- BN_CHECK_BREAK(dmq1);
- iqmp = BN_lebin2bn(g_rsa_key_iqmp, (prime_size / 2), iqmp);
- BN_CHECK_BREAK(iqmp);
- e = BN_lebin2bn(g_rsa_key_e, (exp_size), e);
- BN_CHECK_BREAK(e);
- // calculate n value
- //
- if (!BN_mul(n, p, q, tmp_ctx)) {
- break;
- }
- //calculate d value
- //ϕ(n)=(p−1)(q−1)
- //d=(e^−1) mod ϕ(n)
- //
- d = BN_dup(n);
- NULL_BREAK(d);
- if (!BN_sub(d, d, p) || !BN_sub(d, d, q) || !BN_add_word(d, 1) || !BN_mod_inverse(d, e, d, tmp_ctx)) {
- break;
- }
- // allocates and initializes an RSA key structure
- //
- rsa_ctx = RSA_new();
- rsa_key = EVP_PKEY_new();
- if (rsa_ctx == NULL || rsa_key == NULL || !EVP_PKEY_assign_RSA(rsa_key, rsa_ctx)) {
- RSA_free(rsa_ctx);
- rsa_key = NULL;
- break;
- }
- //setup RSA key with input values
- //Calling set functions transfers the memory management of the values to the RSA object,
- //and therefore the values that have been passed in should not be freed by the caller after these functions has been called.
- //
- if (!RSA_set0_factors(rsa_ctx, p, q)) {
- break;
- }
- rsa_memory_manager = 1;
- if (!RSA_set0_crt_params(rsa_ctx, dmp1, dmq1, iqmp)) {
- BN_clear_free(n);
- BN_clear_free(e);
- BN_clear_free(d);
- BN_clear_free(dmp1);
- BN_clear_free(dmq1);
- BN_clear_free(iqmp);
- break;
- }
- if (!RSA_set0_key(rsa_ctx, n, e, d)) {
- BN_clear_free(n);
- BN_clear_free(e);
- BN_clear_free(d);
- break;
- }
- *new_pri_key2 = rsa_key;
- ret_code = SGX_SUCCESS;
- } while (0);
- BN_CTX_free(tmp_ctx);
- //in case of failure, free allocated BNs and RSA struct
- //
- if (ret_code != SGX_SUCCESS) {
- //BNs were not assigned to rsa ctx yet, user code must free allocated BNs
- //
- if (!rsa_memory_manager) {
- BN_clear_free(n);
- BN_clear_free(e);
- BN_clear_free(d);
- BN_clear_free(dmp1);
- BN_clear_free(dmq1);
- BN_clear_free(iqmp);
- BN_clear_free(q);
- BN_clear_free(p);
- }
- EVP_PKEY_free(rsa_key);
- }
- return ret_code;
- }
- sgx_status_t sgx_create_rsa_pub1_key(int prime_size, int exp_size, const unsigned char *le_n, const unsigned char *le_e, void **new_pub_key1)
- {
- if (new_pub_key1 == NULL || prime_size <= 0 || exp_size <= 0 || le_n == NULL || le_e == NULL) {
- return SGX_ERROR_INVALID_PARAMETER;
- }
- EVP_PKEY *rsa_key = NULL;
- RSA *rsa_ctx = NULL;
- sgx_status_t ret_code = SGX_ERROR_UNEXPECTED;
- BIGNUM* n = NULL;
- BIGNUM* e = NULL;
- do {
- //convert input buffers to BNs
- //
- n = BN_lebin2bn(le_n, prime_size, n);
- BN_CHECK_BREAK(n);
- e = BN_lebin2bn(le_e, exp_size, e);
- BN_CHECK_BREAK(e);
- // allocates and initializes an RSA key structure
- //
- rsa_ctx = RSA_new();
- rsa_key = EVP_PKEY_new();
- if (rsa_ctx == NULL || rsa_key == NULL || !EVP_PKEY_assign_RSA(rsa_key, rsa_ctx)) {
- RSA_free(rsa_ctx);
- rsa_ctx = NULL;
- break;
- }
- //set n, e values of RSA key
- //Calling set functions transfers the memory management of input BNs to the RSA object,
- //and therefore the values that have been passed in should not be freed by the caller after these functions has been called.
- //
- if (!RSA_set0_key(rsa_ctx, n, e, NULL)) {
- break;
- }
- *new_pub_key1 = rsa_key;
- ret_code = SGX_SUCCESS;
- } while (0);
- if (ret_code != SGX_SUCCESS) {
- EVP_PKEY_free(rsa_key);
- BN_clear_free(n);
- BN_clear_free(e);
- }
- return ret_code;
- }
- sgx_status_t sgx_rsa_pub_encrypt_sha256(void* rsa_key, unsigned char* pout_data, size_t* pout_len, const unsigned char* pin_data,
- const size_t pin_len) {
- if (rsa_key == NULL || pout_len == NULL || pin_data == NULL || pin_len < 1 || pin_len >= INT_MAX) {
- return SGX_ERROR_INVALID_PARAMETER;
- }
- EVP_PKEY_CTX *ctx = NULL;
- sgx_status_t ret_code = SGX_ERROR_UNEXPECTED;
- do {
- //allocate and init PKEY_CTX
- //
- ctx = EVP_PKEY_CTX_new((EVP_PKEY*)rsa_key, NULL);
- if ((ctx == NULL) || (EVP_PKEY_encrypt_init(ctx) < 1)) {
- break;
- }
- //set the RSA padding mode, init it to use SHA256
- //
- EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_OAEP_PADDING);
- EVP_PKEY_CTX_set_rsa_oaep_md(ctx, EVP_sha256());
- if (EVP_PKEY_encrypt(ctx, pout_data, pout_len, pin_data, pin_len) <= 0) {
- break;
- }
- ret_code = SGX_SUCCESS;
- } while (0);
- EVP_PKEY_CTX_free(ctx);
- return ret_code;
- }
- sgx_status_t sgx_rsa_priv_decrypt_sha256(void* rsa_key, unsigned char* pout_data, size_t* pout_len, const unsigned char* pin_data,
- const size_t pin_len) {
- if (rsa_key == NULL || pout_len == NULL || pin_data == NULL || pin_len < 1 || pin_len >= INT_MAX) {
- return SGX_ERROR_INVALID_PARAMETER;
- }
- EVP_PKEY_CTX *ctx = NULL;
- sgx_status_t ret_code = SGX_ERROR_UNEXPECTED;
- do {
- //allocate and init PKEY_CTX
- //
- ctx = EVP_PKEY_CTX_new((EVP_PKEY*)rsa_key, NULL);
- if ((ctx == NULL) || (EVP_PKEY_decrypt_init(ctx) < 1)) {
- break;
- }
- //set the RSA padding mode, init it to use SHA256
- //
- EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_OAEP_PADDING);
- EVP_PKEY_CTX_set_rsa_oaep_md(ctx, EVP_sha256());
- if (EVP_PKEY_decrypt(ctx, pout_data, pout_len, pin_data, pin_len) <= 0) {
- break;
- }
- ret_code = SGX_SUCCESS;
- } while (0);
- EVP_PKEY_CTX_free(ctx);
- return ret_code;
- }
- sgx_status_t sgx_create_rsa_priv1_key(int n_byte_size, int e_byte_size, int d_byte_size, const unsigned char *le_n, const unsigned char *le_e,
- const unsigned char *le_d, void **new_pri_key1)
- {
- if (n_byte_size <= 0 || e_byte_size <= 0 || d_byte_size <= 0 || new_pri_key1 == NULL ||
- le_n == NULL || le_e == NULL || le_d == NULL) {
- return SGX_ERROR_INVALID_PARAMETER;
- }
- EVP_PKEY *rsa_key = NULL;
- RSA *rsa_ctx = NULL;
- sgx_status_t ret_code = SGX_ERROR_UNEXPECTED;
- BIGNUM* n = NULL;
- BIGNUM* e = NULL;
- BIGNUM* d = NULL;
- do {
- //convert input buffers to BNs
- //
- n = BN_lebin2bn(le_n, n_byte_size, n);
- BN_CHECK_BREAK(n);
- e = BN_lebin2bn(le_e, e_byte_size, e);
- BN_CHECK_BREAK(e);
- d = BN_lebin2bn(le_d, d_byte_size, d);
- BN_CHECK_BREAK(d);
- // allocates and initializes an RSA key structure
- //
- rsa_ctx = RSA_new();
- rsa_key = EVP_PKEY_new();
- if (rsa_ctx == NULL || rsa_key == NULL || !EVP_PKEY_assign_RSA(rsa_key, rsa_ctx)) {
- RSA_free(rsa_ctx);
- rsa_ctx = NULL;
- break;
- }
- //set n, e values of RSA key
- //Calling set functions transfers the memory management of input BNs to the RSA object,
- //and therefore the values that have been passed in should not be freed by the caller after these functions has been called.
- //
- if (!RSA_set0_key(rsa_ctx, n, e, d)) {
- break;
- }
- *new_pri_key1 = rsa_key;
- ret_code = SGX_SUCCESS;
- } while (0);
- if (ret_code != SGX_SUCCESS) {
- EVP_PKEY_free(rsa_key);
- BN_clear_free(n);
- BN_clear_free(e);
- BN_clear_free(d);
- }
- return ret_code;
- }
- sgx_status_t sgx_free_rsa_key(void *p_rsa_key, sgx_rsa_key_type_t key_type, int mod_size, int exp_size) {
- (void)(key_type);
- (void)(mod_size);
- (void)(exp_size);
- if (p_rsa_key != NULL) {
- EVP_PKEY_free((EVP_PKEY*)p_rsa_key);
- }
- return SGX_SUCCESS;
- }
|