2000-01-27 19:31:26 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
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 02:39:50 +00:00
|
|
|
void DSA_SIG_free(DSA_SIG *a);
|
2016-03-20 18:58:19 +00:00
|
|
|
void DSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, const DSA_SIG *sig);
|
2000-01-27 19:31:26 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
DSA_SIG_new() allocates and initializes a B<DSA_SIG> structure.
|
|
|
|
|
|
|
|
DSA_SIG_free() frees the B<DSA_SIG> structure and its components. The
|
|
|
|
values are erased before the memory is returned to the system.
|
|
|
|
|
2016-03-04 02:39:50 +00:00
|
|
|
DSA_SIG_get0() returns internal pointers the B<r> and B<s> values contained
|
|
|
|
in B<sig>. The values can then be examined or initialised.
|
|
|
|
|
2000-01-27 19:31:26 +00: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-17 19:21:33 +00:00
|
|
|
L<ERR_get_error(3)>. Otherwise it returns a pointer
|
2000-01-27 19:31:26 +00:00
|
|
|
to the newly allocated structure.
|
|
|
|
|
|
|
|
DSA_SIG_free() returns no value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2015-08-17 19:21:33 +00:00
|
|
|
L<dsa(3)>, L<ERR_get_error(3)>,
|
|
|
|
L<DSA_do_sign(3)>
|
2000-01-27 19:31:26 +00:00
|
|
|
|
2016-05-18 15:44:05 +00:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
|
|
|
|
Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
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
|