Skip to content

Commit

Permalink
Update InfisicalClient.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHougaard committed Jan 10, 2024
1 parent a991b0b commit abf64e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions languages/csharp/Infisical.Sdk/InfisicalClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public DeleteSecretResponseSecret DeleteSecret(DeleteSecretOptions options)
throw new InfisicalException(result == null ? "Unknown error" : result.ErrorMessage);
}

public string createSymmetricKey()
public string CreateSymmetricKey()
{

var cmd = new Command
Expand All @@ -121,7 +121,7 @@ public string createSymmetricKey()
}


public EncryptSymmetricResponse encryptSymmetric(EncryptSymmetricOptions options)
public EncryptSymmetricResponse EncryptSymmetric(EncryptSymmetricOptions options)
{
var cmd = new Command
{
Expand All @@ -138,7 +138,7 @@ public EncryptSymmetricResponse encryptSymmetric(EncryptSymmetricOptions options
throw new InfisicalException(result == null ? "Unknown error" : result.ErrorMessage);
}

public string decryptSymmetric(DecryptSymmetricOptions options)
public string DecryptSymmetric(DecryptSymmetricOptions options)
{
var cmd = new Command
{
Expand Down

0 comments on commit abf64e3

Please sign in to comment.