Encrypt WWWForm keys too
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user