Skip to content

Commit 6e42680

Browse files
Fixes
1 parent 5f89d13 commit 6e42680

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Assets/Plugins/Web3AuthSDK/Types/AES256CBC.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public byte[] hmacSha256Sign(byte[] key, byte[] data)
135135
public bool hmacSha256Verify(byte[] key, byte[] data, string sig)
136136
{
137137
byte[] expectedSig = hmacSha256Sign(key, data);
138-
string expectedSigHex = BitConverter.ToString(expectedSig).Replace("-", "").ToLower();
138+
string expectedSigHex = BitConverter.ToString(expectedSig).Replace("-", "").ToLowerInvariant();
139139
return expectedSigHex.Equals(sig);
140140
}
141141
}

Assets/Plugins/Web3AuthSDK/Web3Auth.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void Awake()
6969

7070
Application.deepLinkActivated += onDeepLinkActivated;
7171
if (!string.IsNullOrEmpty(Application.absoluteURL))
72-
onDeepLinkActivated(Application.absoluteURL);C
72+
onDeepLinkActivated(Application.absoluteURL);
7373

7474
#if UNITY_EDITOR
7575
Web3AuthSDK.Editor.Web3AuthDebug.onURLRecieved += (Uri url) =>

0 commit comments

Comments
 (0)