| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BIO_get_ex_new_index, BIO_set_ex_data, BIO_get_ex_data, | 
					
						
							|  |  |  | ENGINE_get_ex_new_index, ENGINE_set_ex_data, ENGINE_get_ex_data, | 
					
						
							|  |  |  | UI_get_ex_new_index, UI_set_ex_data, UI_get_ex_data, | 
					
						
							|  |  |  | X509_get_ex_new_index, X509_set_ex_data, X509_get_ex_data, | 
					
						
							|  |  |  | X509_STORE_get_ex_new_index, X509_STORE_set_ex_data, X509_STORE_get_ex_data, | 
					
						
							|  |  |  | X509_STORE_CTX_get_ex_new_index, X509_STORE_CTX_set_ex_data, X509_STORE_CTX_get_ex_data, | 
					
						
							|  |  |  | DH_get_ex_new_index, DH_set_ex_data, DH_get_ex_data, | 
					
						
							|  |  |  | DSA_get_ex_new_index, DSA_set_ex_data, DSA_get_ex_data, | 
					
						
							|  |  |  | ECDH_get_ex_new_index, ECDH_set_ex_data, ECDH_get_ex_data, | 
					
						
							| 
									
										
										
										
											2017-10-20 21:41:43 +08:00
										 |  |  | EC_KEY_get_ex_new_index, EC_KEY_set_ex_data, EC_KEY_get_ex_data, | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data | 
					
						
							|  |  |  | - application-specific data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  | =head1 SYNOPSIS | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-29 23:10:59 +08:00
										 |  |  | =for openssl generic | 
					
						
							| 
									
										
										
										
											2016-11-11 16:33:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  |  #include <openssl/x509.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  |  int TYPE_get_ex_new_index(long argl, void *argp, | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |                            CRYPTO_EX_new *new_func, | 
					
						
							|  |  |  |                            CRYPTO_EX_dup *dup_func, | 
					
						
							|  |  |  |                            CRYPTO_EX_free *free_func); | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  |  int TYPE_set_ex_data(TYPE *d, int idx, void *arg); | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  |  void *TYPE_get_ex_data(TYPE *d, int idx); | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  | In the description here, I<TYPE> is used a placeholder | 
					
						
							|  |  |  | for any of the OpenSSL datatypes listed in | 
					
						
							|  |  |  | L<CRYPTO_get_ex_new_index(3)>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | These functions handle application-specific data for OpenSSL data | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | structures. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  | TYPE_get_new_ex_index() is a macro that calls CRYPTO_get_ex_new_index() | 
					
						
							|  |  |  | with the correct B<index> value. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TYPE_set_ex_data() is a function that calls CRYPTO_set_ex_data() with | 
					
						
							|  |  |  | an offset into the opaque exdata part of the TYPE object. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-01 06:58:40 +08:00
										 |  |  | TYPE_get_ex_data() is a function that calls CRYPTO_get_ex_data() with | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  | an offset into the opaque exdata part of the TYPE object. | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-25 17:50:39 +08:00
										 |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TYPE_get_new_ex_index() returns a new index on success or -1 on error. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TYPE_set_ex_data() returns 1 on success or 0 on error. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TYPE_get_ex_data() returns the application data or NULL if an error occurred. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-21 22:06:03 +08:00
										 |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | L<CRYPTO_get_ex_new_index(3)>. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-16 01:01:46 +08:00
										 |  |  | Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:04:44 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |