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-21 09:51:12 +00:00
|
|
|
|
|
|
|
#include "ssl_port.h"
|
2016-11-01 05:10:56 +00:00
|
|
|
|
|
|
|
#ifdef ESP32_IDF_PLATFORM
|
|
|
|
|
2016-09-22 03:43:59 +00:00
|
|
|
#include "string.h"
|
2016-09-21 09:51:12 +00:00
|
|
|
#include "malloc.h"
|
|
|
|
|
|
|
|
/*********************************************************************************************/
|
|
|
|
/********************************* SSL general interface *************************************/
|
|
|
|
|
2016-11-01 06:59:50 +00:00
|
|
|
void* ssl_mem_zalloc(size_t size)
|
2016-09-21 09:51:12 +00:00
|
|
|
{
|
|
|
|
void *p = malloc(size);
|
|
|
|
|
|
|
|
if (p)
|
|
|
|
memset(p, 0, size);
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2016-11-01 06:59:50 +00:00
|
|
|
void *ssl_mem_malloc(size_t size)
|
2016-09-21 09:51:12 +00:00
|
|
|
{
|
2016-09-23 03:03:13 +00:00
|
|
|
return malloc(size);
|
2016-09-21 09:51:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 06:59:50 +00:00
|
|
|
void ssl_mem_free(void *p)
|
2016-09-21 09:51:12 +00:00
|
|
|
{
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* ssl_memcpy(void *to, const void *from, size_t size)
|
|
|
|
{
|
|
|
|
return memcpy(to, from, size);
|
|
|
|
}
|
|
|
|
|
2016-09-22 03:43:59 +00:00
|
|
|
size_t ssl_strlen(const char *src)
|
|
|
|
{
|
|
|
|
return strlen(src);
|
|
|
|
}
|
|
|
|
|
2016-09-21 09:51:12 +00:00
|
|
|
void ssl_speed_up_enter(void)
|
|
|
|
{
|
2016-11-01 05:09:54 +00:00
|
|
|
|
2016-09-21 09:51:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ssl_speed_up_exit(void)
|
|
|
|
{
|
2016-11-01 05:09:54 +00:00
|
|
|
|
2016-09-21 09:51:12 +00:00
|
|
|
}
|
2016-11-01 05:07:10 +00:00
|
|
|
|
2016-11-01 05:10:56 +00:00
|
|
|
#endif
|
|
|
|
|