Skip to content

Commit

Permalink
Fix argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes committed Mar 20, 2024
1 parent b961b48 commit e2af5fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ HRESULT Library_nf_sys_sec_cryptography_System_Security_Cryptography_Aes::Decryp
MBEDTLS_AES_DECRYPT,
plainTextArray->m_numOfElements,
ivCopy,
plainTextArray->GetFirstElement(),
cipherTextArray->GetFirstElement()) != 0)
cipherTextArray->GetFirstElement(),
plainTextArray->GetFirstElement()) != 0)
{
NANOCLR_SET_AND_LEAVE(CLR_E_FAIL);
}
Expand Down

0 comments on commit e2af5fb

Please sign in to comment.