Return pointers to the DSA public and private key components without transferring ownership (deprecated).
Declared in <openssl/dsa.h>
[[deprecated]]
void
DSA_get0_key(
DSA const* d,
BIGNUM const** pub_key,
BIGNUM const** priv_key);
Deprecated. Use of this entity is allowed but discouraged.
Returned BIGNUMs must not be freed by the caller.
pointers to the DSA public and private key components without transferring ownership (deprecated).
| Name | Description |
|---|---|
| d | DSA object to query. |
| pub_key | Optional destination for the public key, or NULL. |
| priv_key | Optional destination for the private key, or NULL. |