mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 19:24:42 +02:00
Fix from review
This commit is contained in:
@@ -28751,7 +28751,7 @@ void wolfSSL_AES_cfb128_encrypt(const unsigned char *in, unsigned char* out,
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NO_FILESYSTEM
|
#if !defined(NO_FILESYSTEM) && defined (OPENSSL_EXTRA)
|
||||||
/* returns amount printed on success, negative in fail case */
|
/* returns amount printed on success, negative in fail case */
|
||||||
int wolfSSL_BIO_vprintf(WOLFSSL_BIO* bio, const char* format, va_list args)
|
int wolfSSL_BIO_vprintf(WOLFSSL_BIO* bio, const char* format, va_list args)
|
||||||
{
|
{
|
||||||
@@ -28818,7 +28818,7 @@ int wolfSSL_BIO_printf(WOLFSSL_BIO* bio, const char* format, ...)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* !defined(NO_FILESYSTEM) && defined (OPENSSL_EXTRA) */
|
||||||
|
|
||||||
#if !defined(NO_FILESYSTEM) && defined(__clang__)
|
#if !defined(NO_FILESYSTEM) && defined(__clang__)
|
||||||
#pragma clang diagnostic pop
|
#pragma clang diagnostic pop
|
||||||
|
@@ -7267,7 +7267,7 @@ int wc_AesEcbDecrypt(Aes* aes, byte* out, const byte* in, word32 sz)
|
|||||||
* buffer)
|
* buffer)
|
||||||
* in buffer to encrypt
|
* in buffer to encrypt
|
||||||
* sz size of input buffer
|
* sz size of input buffer
|
||||||
* pre flag to xor after or before feedback. If 1 then add feedback before xor
|
* mode flag to specify AES mode
|
||||||
*
|
*
|
||||||
* returns 0 on success and negative error values on failure
|
* returns 0 on success and negative error values on failure
|
||||||
*/
|
*/
|
||||||
|
@@ -2009,7 +2009,7 @@ WOLFSSL_API int wolfSSL_want(WOLFSSL*);
|
|||||||
WOLFSSL_API int wolfSSL_want_read(WOLFSSL*);
|
WOLFSSL_API int wolfSSL_want_read(WOLFSSL*);
|
||||||
WOLFSSL_API int wolfSSL_want_write(WOLFSSL*);
|
WOLFSSL_API int wolfSSL_want_write(WOLFSSL*);
|
||||||
|
|
||||||
#ifndef NO_FILESYSTEM
|
#if !defined(NO_FILESYSTEM) && defined (OPENSSL_EXTRA)
|
||||||
#include <stdarg.h> /* var_arg */
|
#include <stdarg.h> /* var_arg */
|
||||||
WOLFSSL_API int wolfSSL_BIO_vprintf(WOLFSSL_BIO* bio, const char* format,
|
WOLFSSL_API int wolfSSL_BIO_vprintf(WOLFSSL_BIO* bio, const char* format,
|
||||||
va_list args);
|
va_list args);
|
||||||
|
Reference in New Issue
Block a user