Fix up whitespace changes from editor autoformat

This commit is contained in:
Colton Willey
2024-09-04 10:25:20 -07:00
parent f9af463db1
commit 3b5d0aa85a

View File

@@ -333,6 +333,12 @@ int wc_RsaPrivateDecrypt(const byte* in, word32 inLen, byte* out,
if (ret < 0) { if (ret < 0) {
return -1; return -1;
} }
if (ret != inLen) {
return -1;
}
if (XMEMCMP(in, plain, ret) != 0) {
return -1;
}
\endcode \endcode
\sa wc_RsaPad \sa wc_RsaPad