Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ public class TestUtils {
// For now, only .NET and Java have RSA support
public static final Set<String> RAW_SUPPORTED =
Set.of(JAVA_V3_CURRENT, JAVA_V3_TRANSITION, JAVA_V4
, NET_V2_CURRENT, NET_V3_CURRENT
// , NET_V3_TRANSITION
, NET_V2_CURRENT, NET_V3_CURRENT, NET_V3_TRANSITION
);

// .NET only supports decrypting instruction files using AES and RSA.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class KeyMaterial
{
public byte[]? RsaKey { get; set; }
public byte[]? AesKey { get; set; }
public string KmsKeyId { get; set; }
public string? KmsKeyId { get; set; }
}

[JsonConverter(typeof(JsonStringEnumConverter))]
Expand Down
Loading