DSA_SIG_new.pod 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. =pod
  2. =head1 NAME
  3. DSA_SIG_get0, DSA_SIG_set0,
  4. DSA_SIG_new, DSA_SIG_free - allocate and free DSA signature objects
  5. =head1 SYNOPSIS
  6. #include <openssl/dsa.h>
  7. DSA_SIG *DSA_SIG_new(void);
  8. void DSA_SIG_free(DSA_SIG *a);
  9. void DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
  10. int DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s);
  11. =head1 DESCRIPTION
  12. DSA_SIG_new() allocates an empty B<DSA_SIG> structure.
  13. DSA_SIG_free() frees the B<DSA_SIG> structure and its components. The
  14. values are erased before the memory is returned to the system.
  15. If the argument is NULL, nothing is done.
  16. DSA_SIG_get0() returns internal pointers to the B<r> and B<s> values contained
  17. in B<sig>.
  18. The B<r> and B<s> values can be set by calling DSA_SIG_set0() and passing the
  19. new values for B<r> and B<s> as parameters to the function. Calling this
  20. function transfers the memory management of the values to the DSA_SIG object,
  21. and therefore the values that have been passed in should not be freed directly
  22. after this function has been called.
  23. =head1 RETURN VALUES
  24. If the allocation fails, DSA_SIG_new() returns B<NULL> and sets an
  25. error code that can be obtained by
  26. L<ERR_get_error(3)>. Otherwise it returns a pointer
  27. to the newly allocated structure.
  28. DSA_SIG_free() returns no value.
  29. DSA_SIG_set0() returns 1 on success or 0 on failure.
  30. =head1 SEE ALSO
  31. L<EVP_PKEY_new(3)>, L<EVP_PKEY_free(3)>, L<EVP_PKEY_get_bn_param(3)>,
  32. L<ERR_get_error(3)>
  33. =head1 COPYRIGHT
  34. Copyright 2000-2024 The OpenSSL Project Authors. All Rights Reserved.
  35. Licensed under the Apache License 2.0 (the "License"). You may not use
  36. this file except in compliance with the License. You can obtain a copy
  37. in the file LICENSE in the source distribution or at
  38. L<https://www.openssl.org/source/license.html>.
  39. =cut