1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-03 22:13:11 +03:00

openssl: formatting (delete empty lines) [ci skip]

This commit is contained in:
Viktor Szakats
2023-11-25 00:35:43 +00:00
parent 5326a5ce26
commit d2ef66473c
2 changed files with 0 additions and 3 deletions

View File

@@ -562,7 +562,6 @@ _libssh2_dsa_sha1_verify(libssh2_dsa_ctx * dsactx,
if(!_libssh2_sha1(m, m_len, hash))
/* _libssh2_sha1() succeeded */
ret = DSA_do_verify(hash, SHA_DIGEST_LENGTH, dsasig, dsactx);
#endif
DSA_SIG_free(dsasig);

View File

@@ -382,7 +382,6 @@ extern void _libssh2_openssl_crypto_exit(void);
#define _libssh2_rsa_free(rsactx) EVP_PKEY_free(rsactx)
#else
#define libssh2_rsa_ctx RSA
#define _libssh2_rsa_free(rsactx) RSA_free(rsactx)
#endif
@@ -395,7 +394,6 @@ extern void _libssh2_openssl_crypto_exit(void);
#define _libssh2_dsa_free(rsactx) EVP_PKEY_free(rsactx)
#else
#define libssh2_dsa_ctx DSA
#define _libssh2_dsa_free(dsactx) DSA_free(dsactx)
#endif