Skip to content

Commit

Permalink
fix order of arguments when calling aws_aes_gcm_256_new
Browse files Browse the repository at this point in the history
  • Loading branch information
sbiscigl committed May 6, 2024
1 parent e092720 commit cac7ca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/crypto/SymmetricCipher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ namespace Aws
allocator,
key.has_value() ? &key.value() : nullptr,
iv.has_value() ? &iv.value() : nullptr,
tag.has_value() ? &tag.value() : nullptr,
aad.has_value() ? &aad.value() : nullptr)};
aad.has_value() ? &aad.value() : nullptr,
tag.has_value() ? &tag.value() : nullptr)};
}

SymmetricCipher SymmetricCipher::CreateAES_256_KeyWrap_Cipher(
Expand Down

0 comments on commit cac7ca5

Please sign in to comment.