|
Lines 46-51
extern const EVP_CIPHER *evp_acss(void);
Link Here
|
| 46 |
# endif |
46 |
# endif |
| 47 |
#endif |
47 |
#endif |
| 48 |
|
48 |
|
|
|
49 |
/* OpenSSL 0.9.8e returns cipher key len not context key len */ |
| 50 |
#if (OPENSSL_VERSION_NUMBER == 0x0090805fL) |
| 51 |
# define EVP_CIPHER_CTX_key_length(c) ((c)->key_len) |
| 52 |
#endif |
| 53 |
|
| 49 |
/* |
54 |
/* |
| 50 |
* We overload some of the OpenSSL crypto functions with ssh_* equivalents |
55 |
* We overload some of the OpenSSL crypto functions with ssh_* equivalents |
| 51 |
* which cater for older and/or less featureful OpenSSL version. |
56 |
* which cater for older and/or less featureful OpenSSL version. |