2016-09-22 02:28:08 +00:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-09-20 08:58:46 +00:00
|
|
|
#include "ssl_cert.h"
|
2016-09-22 02:28:08 +00:00
|
|
|
#include "ssl_pkey.h"
|
|
|
|
#include "ssl_x509.h"
|
2016-09-21 01:23:29 +00:00
|
|
|
#include "ssl_dbg.h"
|
2016-09-22 02:28:08 +00:00
|
|
|
#include "ssl_port.h"
|
2016-09-20 08:58:46 +00:00
|
|
|
|
2016-09-23 06:50:27 +00:00
|
|
|
/**
|
2016-09-26 03:14:19 +00:00
|
|
|
* @brief create a certification object according to input certification
|
2016-09-22 02:28:08 +00:00
|
|
|
*/
|
2016-09-26 03:14:19 +00:00
|
|
|
CERT *__ssl_cert_new(CERT *ic)
|
2016-09-20 08:58:46 +00:00
|
|
|
{
|
2016-09-22 02:28:08 +00:00
|
|
|
CERT *cert;
|
2016-09-20 08:58:46 +00:00
|
|
|
|
2016-09-26 03:14:19 +00:00
|
|
|
X509 *ix;
|
|
|
|
EVP_PKEY *ipk;
|
|
|
|
|
2016-11-01 05:07:10 +00:00
|
|
|
cert = ssl_mem_zalloc(sizeof(CERT));
|
2017-01-10 12:49:24 +00:00
|
|
|
if (!cert) {
|
|
|
|
SSL_DEBUG(SSL_CERT_ERROR_LEVEL, "no enough memory > (cert)");
|
|
|
|
goto no_mem;
|
|
|
|
}
|
2016-09-20 08:58:46 +00:00
|
|
|
|
2016-09-26 03:14:19 +00:00
|
|
|
if (ic) {
|
|
|
|
ipk = ic->pkey;
|
|
|
|
ix = ic->x509;
|
|
|
|
} else {
|
|
|
|
ipk = NULL;
|
|
|
|
ix = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cert->pkey = __EVP_PKEY_new(ipk);
|
2017-01-10 12:49:24 +00:00
|
|
|
if (!cert->pkey) {
|
|
|
|
SSL_DEBUG(SSL_CERT_ERROR_LEVEL, "__EVP_PKEY_new() return NULL");
|
|
|
|
goto pkey_err;
|
|
|
|
}
|
2016-09-20 08:58:46 +00:00
|
|
|
|
2016-09-26 03:14:19 +00:00
|
|
|
cert->x509 = __X509_new(ix);
|
2017-01-10 12:49:24 +00:00
|
|
|
if (!cert->x509) {
|
|
|
|
SSL_DEBUG(SSL_CERT_ERROR_LEVEL, "__X509_new() return NULL");
|
|
|
|
goto x509_err;
|
|
|
|
}
|
2016-09-22 02:28:08 +00:00
|
|
|
|
|
|
|
return cert;
|
|
|
|
|
2017-01-10 12:49:24 +00:00
|
|
|
x509_err:
|
2016-09-22 02:28:08 +00:00
|
|
|
EVP_PKEY_free(cert->pkey);
|
2017-01-10 12:49:24 +00:00
|
|
|
pkey_err:
|
2016-11-01 05:07:10 +00:00
|
|
|
ssl_mem_free(cert);
|
2017-01-10 12:49:24 +00:00
|
|
|
no_mem:
|
2016-09-22 02:28:08 +00:00
|
|
|
return NULL;
|
2016-09-20 08:58:46 +00:00
|
|
|
}
|
|
|
|
|
2016-09-26 03:14:19 +00:00
|
|
|
/**
|
|
|
|
* @brief create a certification object include private key object
|
|
|
|
*/
|
|
|
|
CERT *ssl_cert_new(void)
|
|
|
|
{
|
|
|
|
return __ssl_cert_new(NULL);
|
|
|
|
}
|
|
|
|
|
2016-09-23 06:50:27 +00:00
|
|
|
/**
|
|
|
|
* @brief free a certification object
|
2016-09-22 02:28:08 +00:00
|
|
|
*/
|
2016-09-23 06:50:27 +00:00
|
|
|
void ssl_cert_free(CERT *cert)
|
2016-09-20 08:58:46 +00:00
|
|
|
{
|
2017-01-10 12:49:24 +00:00
|
|
|
SSL_ASSERT3(cert);
|
|
|
|
|
2016-09-23 06:50:27 +00:00
|
|
|
X509_free(cert->x509);
|
2016-09-20 08:58:46 +00:00
|
|
|
|
2016-09-23 06:50:27 +00:00
|
|
|
EVP_PKEY_free(cert->pkey);
|
2016-09-20 08:58:46 +00:00
|
|
|
|
2016-11-01 05:07:10 +00:00
|
|
|
ssl_mem_free(cert);
|
2016-09-20 08:58:46 +00:00
|
|
|
}
|