Skip to content

Commit

Permalink
SNOW-723810: Add coverage for StorageClient
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Oct 6, 2023
1 parent 6feb3cb commit 1f71cae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,29 @@ namespace Snowflake.Data.Core.FileTransfer
{
internal class WrappedContentInfo
{
public string KeyId;
public string EncryptedKey;
public string Algorithm;
public string KeyId { get; set; }
public string EncryptedKey { get; set; }
public string Algorithm { get; set; }
}

internal class EncryptionAgentInfo
{
public string Protocol;
public string EncryptionAlgorithm;
public string Protocol { get; set; }
public string EncryptionAlgorithm { get; set; }
}

internal class KeyWrappingMetadataInfo
{
public string EncryptionLibrary;
public string EncryptionLibrary { get; set; }
}

internal class EncryptionData
{
public string EncryptionMode;
public WrappedContentInfo WrappedContentKey;
public EncryptionAgentInfo EncryptionAgent;
public string ContentEncryptionIV;
public KeyWrappingMetadataInfo KeyWrappingMetadata;
public string EncryptionMode { get; set; }
public WrappedContentInfo WrappedContentKey { get; set; }
public EncryptionAgentInfo EncryptionAgent { get; set; }
public string ContentEncryptionIV { get; set; }
public KeyWrappingMetadataInfo KeyWrappingMetadata { get; set; }
}

internal class RemoteLocation
Expand Down

This file was deleted.

0 comments on commit 1f71cae

Please sign in to comment.