我有一个WPF应用程序,它将很快使用AWS Lambda服务。这样做将使用如下代码:
AmazonLambdaConfig config = new AmazonLambdaConfig() { RegionEndpoint = RegionEndpoint.APSouth1};
AmazonLambdaClient client = new AmazonLambdaClient("AccKey", "SecKey", config);
InvokeRequest request = new InvokeRequest() { FunctionName = "FuncName" };
InvokeResponse response = client.Invoke(request);
您将看到代码需要一个安全密钥-我的问题是将安全密钥存储在应用程序中的最佳方法是什么,这样它就不容易被撬开。
我很欣赏可能不是一种完全安全的方法,但是任何建议都值得赞赏。