如何在Flutter中固定公钥?

时间:2019-02-16 18:40:45

标签: dart flutter pinning

我想固定服务器的公共密钥,以便对服务器的任何请求都必须具有该公共密钥(这是为了防止像Charles这样的代理嗅探数据)。

我在Volley上用Android做过类似的事情。

如何使用Flutter进行同样的操作?

2 个答案:

答案 0 :(得分:3)

使用没有可信根的SecurityContext创建客户端以强制执行错误的证书回调,即使是获得好的证书也是如此。

SecurityContext(withTrustedRoots: false);

在错误证书回调中,使用asn1lib package解析DER编码的证书。例如:

ASN1Parser p = ASN1Parser(der);
ASN1Sequence signedCert = p.nextObject() as ASN1Sequence;
ASN1Sequence cert = signedCert.elements[0] as ASN1Sequence;
ASN1Sequence pubKeyElement = cert.elements[6] as ASN1Sequence;

ASN1BitString pubKeyBits = pubKeyElement.elements[1] as ASN1BitString;

List<int> encodedPubKey = pubKeyBits.stringValue;
// could stop here and compare the encoded key parts, or...

// parse them into their modulus/exponent parts, and test those
// (assumes RSA public key)
ASN1Parser rsaParser = ASN1Parser(encodedPubKey);
ASN1Sequence keySeq = rsaParser.nextObject() as ASN1Sequence;
ASN1Integer modulus = keySeq.elements[0] as ASN1Integer;
ASN1Integer exponent = keySeq.elements[1] as ASN1Integer;

print(modulus.valueAsBigInteger);
print(exponent);

答案 1 :(得分:0)

旋转键可降低风险。当攻击者获取旧服务器硬盘驱动器或备份文件并从中获取旧服务器私钥时,如果密钥已被旋转,则他们无法模拟当前服务器。因此,在更新证书时始终生成一个新密钥。配置客户端以信任旧密钥和新密钥。等待您的用户更新到客户端的新版本。然后将新密钥部署到您的服务器。然后,您可以从客户端删除旧密钥。

仅当您不旋转密钥时才需要服务器密钥固定。那是不好的安全习惯。

您应该旋转进行证书固定。我在How to do SSL pinning via self generated signed certificates in flutter?

中添加了示例代码