diff --git a/Assets/Plugins/Web3AuthSDK/Types/AES256CBC.cs b/Assets/Plugins/Web3AuthSDK/Types/AES256CBC.cs index 1b2f6ae..1fc9f26 100644 --- a/Assets/Plugins/Web3AuthSDK/Types/AES256CBC.cs +++ b/Assets/Plugins/Web3AuthSDK/Types/AES256CBC.cs @@ -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); } } diff --git a/Assets/Plugins/Web3AuthSDK/Web3Auth.cs b/Assets/Plugins/Web3AuthSDK/Web3Auth.cs index f817d87..1042834 100644 --- a/Assets/Plugins/Web3AuthSDK/Web3Auth.cs +++ b/Assets/Plugins/Web3AuthSDK/Web3Auth.cs @@ -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) =>