diff --git a/Assets/Scripts/EncryptedWWWForm.cs b/Assets/Scripts/EncryptedWWWForm.cs index 3abde3f..331a75c 100644 --- a/Assets/Scripts/EncryptedWWWForm.cs +++ b/Assets/Scripts/EncryptedWWWForm.cs @@ -6,7 +6,7 @@ public class EncryptedWWWForm public void AddField(string key, string value) { - form.AddField(key, SensitiveInfo.Encrypt(value, SensitiveInfo.SERVER_SEND_TRANSFER_KEY)); + form.AddField(SensitiveInfo.Encrypt(key, SensitiveInfo.SERVER_SEND_TRANSFER_KEY), SensitiveInfo.Encrypt(value, SensitiveInfo.SERVER_SEND_TRANSFER_KEY)); } public WWWForm GetWWWForm() => form;