由于某种原因,Fiddler能够捕获Charles无法捕获的https流量。由于我使用mac并且fiddler-mac不能像Charles那样捕获https流量,因此我认为问题在于Fiddler Windows使用了不同类型的p12文件(根证书+密钥)。
我不知道SHA256(根)和SHA256(EE)在这里的含义。
通常,这是使用openssl生成p12的方法:
openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out certificate.pem
openssl x509 -text -noout -in certificate.pem
openssl pkcs12 -inkey key.pem -in certificate.pem -export -out certificate.p12
但这会生成一个rsa:2048
密钥(root?ee?)。