Skip to content

Commit

Permalink
changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko committed Oct 22, 2024
1 parent 5ea1cac commit 4f4bc6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Snowflake.Data.Tests/UnitTests/GcmEncryptionProviderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Snowflake.Data.Tests.UnitTests
[TestFixture]
public class GcmEncryptionProviderTest
{
private const string PlainText = "there is no rose without a smoke";
private const string PlainText = "there is no rose without thorns";
private static readonly byte[] s_plainTextBytes = Encoding.UTF8.GetBytes(PlainText);
private static readonly byte[] s_qsmkBytes = TestDataGenarator.NextBytes(GcmEncryptionProvider.BlockSizeInBytes);
private static readonly string s_qsmk = Convert.ToBase64String(s_qsmkBytes);
Expand Down Expand Up @@ -74,7 +74,7 @@ public void TestEncryptAndDecryptWithoutAad()
}

[Test]
public void TestEncryptAndDEncryptWithAad()
public void TestEncryptAndDecryptWithAad()
{
// arrange
SFEncryptionMetadata encryptionMetadata = new SFEncryptionMetadata();
Expand Down
2 changes: 1 addition & 1 deletion Snowflake.Data/Core/FileTransfer/EncryptionProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Snowflake.Data.Core.FileTransfer
{
/// <summary>
/// The encryptor/decryptor for PUT/GET files.
/// Handles encryption and decryption using EAS CBC (for files) and ECB (for keys).
/// Handles encryption and decryption using AES CBC (for files) and ECB (for keys).
/// </summary>
class EncryptionProvider
{
Expand Down

0 comments on commit 4f4bc6b

Please sign in to comment.