Encrypt Amazon S3 secret access key

This commit is contained in:
Jaex 2020-05-30 16:34:35 +03:00
parent 7a1daca92f
commit 5515739e9c

View file

@ -23,11 +23,14 @@ You should have received a copy of the GNU General Public License
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
namespace ShareX.UploadersLib.FileUploaders
{
public class AmazonS3Settings
{
public string AccessKeyID { get; set; }
[JsonEncrypt]
public string SecretAccessKey { get; set; }
public string Endpoint { get; set; }
public string Region { get; set; }