| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 19:03:34 +08:00
										 |  |  | DSA_SIG_get0, DSA_SIG_set0, | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | DSA_SIG_new, DSA_SIG_free - allocate and free DSA signature objects | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/dsa.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  DSA_SIG *DSA_SIG_new(void); | 
					
						
							| 
									
										
										
										
											2016-03-04 10:39:50 +08:00
										 |  |  |  void DSA_SIG_free(DSA_SIG *a); | 
					
						
							| 
									
										
										
										
											2016-06-10 05:09:48 +08:00
										 |  |  |  void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps); | 
					
						
							| 
									
										
										
										
											2016-06-10 05:52:04 +08:00
										 |  |  |  int DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s); | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-08 21:14:40 +08:00
										 |  |  | DSA_SIG_new() allocates an empty B<DSA_SIG> structure. | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | DSA_SIG_free() frees the B<DSA_SIG> structure and its components. The | 
					
						
							|  |  |  | values are erased before the memory is returned to the system. | 
					
						
							| 
									
										
										
										
											2024-06-25 17:58:49 +08:00
										 |  |  | If the argument is NULL, nothing is done. | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-10 05:09:48 +08:00
										 |  |  | DSA_SIG_get0() returns internal pointers to the B<r> and B<s> values contained | 
					
						
							|  |  |  | in B<sig>. | 
					
						
							| 
									
										
										
										
											2016-03-04 10:39:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 04:54:22 +08:00
										 |  |  | The B<r> and B<s> values can be set by calling DSA_SIG_set0() and passing the | 
					
						
							|  |  |  | new values for B<r> and B<s> as parameters to the function. Calling this | 
					
						
							|  |  |  | function transfers the memory management of the values to the DSA_SIG object, | 
					
						
							|  |  |  | and therefore the values that have been passed in should not be freed directly | 
					
						
							|  |  |  | after this function has been called. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | If the allocation fails, DSA_SIG_new() returns B<NULL> and sets an | 
					
						
							|  |  |  | error code that can be obtained by | 
					
						
							| 
									
										
										
										
											2015-08-18 03:21:33 +08:00
										 |  |  | L<ERR_get_error(3)>. Otherwise it returns a pointer | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | to the newly allocated structure. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DSA_SIG_free() returns no value. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 04:54:22 +08:00
										 |  |  | DSA_SIG_set0() returns 1 on success or 0 on failure. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 11:31:43 +08:00
										 |  |  | L<EVP_PKEY_new(3)>, L<EVP_PKEY_free(3)>, L<EVP_PKEY_get_bn_param(3)>, | 
					
						
							|  |  |  | L<ERR_get_error(3)> | 
					
						
							| 
									
										
										
										
											2000-01-28 03:31:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-05 15:35:49 +08:00
										 |  |  | Copyright 2000-2024 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 |