Skip to content

Commit 5088f31

Browse files
committed
DEVDOCS-12874 correct comment
1 parent 3782591 commit 5088f31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

launcher-csharp/Connect/Examples/HMACValidation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace DocuSign.Connect.Examples
1010

1111
public static class HMACValidation
1212
{
13-
#ds-snippet-start:Connect1Step1
13+
//ds-snippet-start:Connect1Step1
1414
public static string ComputeHash(string secret, string payload)
1515
{
1616
byte[] bytes = Encoding.UTF8.GetBytes(secret);
@@ -19,7 +19,7 @@ public static string ComputeHash(string secret, string payload)
1919

2020
return Convert.ToBase64String(hmac.ComputeHash(bytes));
2121
}
22-
#ds-snippet-end:Connect1Step1
22+
//ds-snippet-end:Connect1Step1
2323

2424
public static bool HashIsValid(string secret, string payload, string verify)
2525
{

0 commit comments

Comments
 (0)