libssh-rs-sys 0.2.6

Native bindings to the libssh library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LIBCRYPTO_COMPAT_H
#define LIBCRYPTO_COMPAT_H

#include <openssl/opensslv.h>

#define NISTP256 "P-256"
#define NISTP384 "P-384"
#define NISTP521 "P-521"

#if OPENSSL_VERSION_NUMBER < 0x30000000L
#define EVP_PKEY_eq EVP_PKEY_cmp
#endif /* OPENSSL_VERSION_NUMBER */

#endif /* LIBCRYPTO_COMPAT_H */