有没有办法在Volley中签署http请求?
据我了解SSL连接。
如果服务器发送响应,客户端会使用服务器的公钥验证响应吗?
it('should have an img tag with src and alt properties', () => {
const wrapper = shallow(<FeaturedProject />);
const { alt, src } = wrapper.find('img').props();
assert.equal(wrapper.find('img').length, 1);
assert.equal(alt.length, 1);
assert.equal(src.length, 1);
});
如何适应这个过程?
答案 0 :(得分:1)
据我所知,我认为你掌握了它的主旨。 SSL固定只是验证服务器响应提供的CA证书。
我认为这个网址是对的。也许它可以帮到你
答案 1 :(得分:1)
不,它不会这样。没有签署HTTP请求。简而言之:
TLS本身不知道HTTP,即不知道HTTP请求和响应是什么。它只能看到它保护的数据流。 HTTP请求和响应是此流的一部分,因此受到保护,但没有特定的HTTP请求或响应签名。