| 
									
										
										
										
											2016-09-22 10:28:08 +08: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 16:58:46 +08:00
										 |  |  | #ifndef _SSL_CERT_H_
 | 
					
						
							|  |  |  | #define _SSL_CERT_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 15:18:14 +08:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  |  extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-22 10:28:08 +08:00
										 |  |  | #include "ssl_types.h"
 | 
					
						
							| 
									
										
										
										
											2016-09-20 16:58:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-26 11:14:19 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief create a certification object include private key object according to input certification | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param ic - input certification point | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @return certification object point | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | CERT *__ssl_cert_new(CERT *ic); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 14:50:27 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief create a certification object include private key object | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param none | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @return certification object point | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2016-09-22 10:28:08 +08:00
										 |  |  | CERT* ssl_cert_new(void); | 
					
						
							| 
									
										
										
										
											2016-09-23 14:50:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @brief free a certification object | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param cert - certification object point | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @return none | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void ssl_cert_free(CERT *cert); | 
					
						
							| 
									
										
										
										
											2016-09-20 16:58:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 15:18:14 +08:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-20 16:58:46 +08:00
										 |  |  | #endif
 |