我试图将Javascript客户端的消息传递给PHP PHP服务器。为了增加一层安全性,我想用哈希对数据对象进行签名。
/* Generate signature of the data with the password */
that.signEnvelope = function(data,password)
{
return CryptoJS.SHA256(JSON.stringify(data) + password).toString();
};
这在服务器上很快就会崩溃。JSON.stringify函数不会生成与服务器上的json_encode匹配的1:1字符串,因此
当我试图使用ElasticBean秸秆在EC2上部署我的php应用程序时,我会收到一条消息。
Environment named *** is in an invalid state for this operation. Must be Ready.
我无法部署。服务器状态正在运行,没有警告。
在这一点上,我的经验非常有限。我怎么解决这个问题?