我需要在我的flutter应用程序中生成一个密钥对,但是似乎没有任何库可以这样做。有一个名为RSA的库,它可以解析一对公钥/私钥,并且能够使用它们来加密和解密字符串,但是它不能生成新的KeyPair(最好从给定的字符串)。
首先如何生成密钥?我想念什么吗?
有Pointycastle兼容Dart2和Flutter的预发行版。
默认的README.md指向第一个非预发行版本,因此首页显示“ DART 2 INCOMPATIBLE”,但仅适用于版本< 0.11.1
。
只需添加到pubspec.yaml
dependencies:
pointycastle: ^1.0.0-rc4
我开始使用一些示例代码通过尖尖的城堡生成公钥/私钥对。经过长时间的调试和编辑代码,我得到了以下代码:
var keyParams = new RSAKeyGeneratorParameters(BigInt.from(65537), 2048, 5);
var secureRandom = new FortunaRandom();
var random = new Random.secure();
List<int> seeds = [];
for (int i = 0; i < 32; i++) {
seeds.add(random.nextInt(255));
}
secureRandom.seed(new KeyParameter(new Uint8List.fromList(seeds)));
var rngParams = new ParametersWithRandom(keyParams, secureRandom);
var k = new RSAKeyGenerator();
k.init(rngParams);
var keyPair = k.generateKeyPair();
print(new RsaKeyHelper().encodePublicKeyToPem(keyPair.publicKey) );
print(new RsaKeyHelper().encodePrivateKeyToPem(keyPair.privateKey) );
AsymmetricKeyParameter<RSAPublicKey> keyParametersPublic = new PublicKeyParameter(keyPair.publicKey);
var cipher = new RSAEngine()..init(true, keyParametersPublic);
var cipherText = cipher.process(new Uint8List.fromList("Hello World".codeUnits));
print("Encrypted: ${new String.fromCharCodes(cipherText)}");
AsymmetricKeyParameter<RSAPrivateKey> keyParametersPrivate = new PrivateKeyParameter(keyPair.privateKey);
cipher.init( false, keyParametersPrivate )
;
var decrypted = cipher.process(cipherText);
print("Decrypted: ${new String.fromCharCodes(decrypted)}");
[我使用了this git issue page(Look here for some more functions such as encoding to / decoding from PEM]中此人的编辑,
您可以使用此结构: