1DSA_SIG_NEW(3) OpenSSL DSA_SIG_NEW(3)
2
3
4
6 DSA_SIG_get0, DSA_SIG_set0, DSA_SIG_new, DSA_SIG_free - allocate and
7 free DSA signature objects
8
10 #include <openssl/dsa.h>
11
12 DSA_SIG *DSA_SIG_new(void);
13 void DSA_SIG_free(DSA_SIG *a);
14 void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
15 int DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s);
16
18 DSA_SIG_new() allocates an empty DSA_SIG structure.
19
20 DSA_SIG_free() frees the DSA_SIG structure and its components. The
21 values are erased before the memory is returned to the system.
22
23 DSA_SIG_get0() returns internal pointers to the r and s values
24 contained in sig.
25
26 The r and s values can be set by calling DSA_SIG_set0() and passing the
27 new values for r and s as parameters to the function. Calling this
28 function transfers the memory management of the values to the DSA_SIG
29 object, and therefore the values that have been passed in should not be
30 freed directly after this function has been called.
31
33 If the allocation fails, DSA_SIG_new() returns NULL and sets an error
34 code that can be obtained by ERR_get_error(3). Otherwise it returns a
35 pointer to the newly allocated structure.
36
37 DSA_SIG_free() returns no value.
38
39 DSA_SIG_set0() returns 1 on success or 0 on failure.
40
42 DSA_new(3), ERR_get_error(3), DSA_do_sign(3)
43
45 Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
46
47 Licensed under the OpenSSL license (the "License"). You may not use
48 this file except in compliance with the License. You can obtain a copy
49 in the file LICENSE in the source distribution or at
50 <https://www.openssl.org/source/license.html>.
51
52
53
541.1.1q 2023-07-20 DSA_SIG_NEW(3)