Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Jan 12, 2024
1 parent 5f89d13 commit 6e42680
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/Plugins/Web3AuthSDK/Types/AES256CBC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public byte[] hmacSha256Sign(byte[] key, byte[] data)
public bool hmacSha256Verify(byte[] key, byte[] data, string sig)
{
byte[] expectedSig = hmacSha256Sign(key, data);
string expectedSigHex = BitConverter.ToString(expectedSig).Replace("-", "").ToLower();
string expectedSigHex = BitConverter.ToString(expectedSig).Replace("-", "").ToLowerInvariant();
return expectedSigHex.Equals(sig);
}
}
2 changes: 1 addition & 1 deletion Assets/Plugins/Web3AuthSDK/Web3Auth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public void Awake()

Application.deepLinkActivated += onDeepLinkActivated;
if (!string.IsNullOrEmpty(Application.absoluteURL))
onDeepLinkActivated(Application.absoluteURL);C
onDeepLinkActivated(Application.absoluteURL);

#if UNITY_EDITOR
Web3AuthSDK.Editor.Web3AuthDebug.onURLRecieved += (Uri url) =>
Expand Down

0 comments on commit 6e42680

Please sign in to comment.