mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
Fix up whitespace changes from editor autoformat
This commit is contained in:
@ -333,6 +333,12 @@ int wc_RsaPrivateDecrypt(const byte* in, word32 inLen, byte* out,
|
||||
if (ret < 0) {
|
||||
return -1;
|
||||
}
|
||||
if (ret != inLen) {
|
||||
return -1;
|
||||
}
|
||||
if (XMEMCMP(in, plain, ret) != 0) {
|
||||
return -1;
|
||||
}
|
||||
\endcode
|
||||
|
||||
\sa wc_RsaPad
|
||||
|
Reference in New Issue
Block a user