Skip to content

Commit

Permalink
Updated to reflect non-aliased values per review suggestion
Browse files Browse the repository at this point in the history
Signed-off-by: Whit Waldo <[email protected]>
  • Loading branch information
WhitWaldo committed Jan 3, 2024
1 parent 6fc560d commit 3c4d152
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Dapr.Client/CryptographyEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public enum KeyWrapAlgorithm
/// <summary>
/// Represents the AES key wrap algorithm.
/// </summary>
[EnumMember(Value="AES")]
[EnumMember(Value="A256KW")]
Aes,
/// <summary>
/// An alias for the AES key wrap algorithm.
/// </summary>
[EnumMember(Value="AES")]
[EnumMember(Value="A256KW")]
A256kw,
/// <summary>
/// Represents the AES 128 CBC key wrap algorithm.
Expand All @@ -65,12 +65,12 @@ public enum KeyWrapAlgorithm
/// <summary>
/// Represents the RSA key wrap algorithm.
/// </summary>
[EnumMember(Value="RSA")]
[EnumMember(Value= "RSA-OAEP-256")]
Rsa,
/// <summary>
/// An alias for the RSA key wrap algorithm.
/// </summary>
[EnumMember(Value="RSA")]
[EnumMember(Value= "RSA-OAEP-256")]
RsaOaep256 //Alias for RSA
}
}

0 comments on commit 3c4d152

Please sign in to comment.