mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-20 00:10:43 -05:00
Always use OpenSSL 3.0 API when available
The new APIs work always as OpenSSL provides glue to access also old style engines using the new APIs.
This commit is contained in:
parent
8de089e514
commit
a337dbef22
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ BN_bn2bin_fixed(const BIGNUM *bn, unsigned char *buf, int size) {
|
|||
return (size);
|
||||
}
|
||||
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x30000000L && OPENSSL_API_LEVEL >= 30000
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
||||
|
||||
static const char *
|
||||
opensslecdsa_key_alg_to_group_name(unsigned int key_alg) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue