Flutter-如何生成私钥/公钥对以加密消息

问题描述 投票:3回答:3

我需要在我的flutter应用程序中生成一个密钥对,但是似乎没有任何库可以这样做。有一个名为RSA的库,它可以解析一对公钥/私钥,并且能够使用它们来加密和解密字符串,但是它不能生成新的KeyPair(最好从给定的字符串)。

首先如何生成密钥?我想念什么吗?

android dart cryptography flutter public-key-encryption
3个回答
4
投票

Pointycastle兼容Dart2和Flutter的预发行版。

默认的README.md指向第一个非预发行版本,因此首页显示“ DART 2 INCOMPATIBLE”,但仅适用于版本< 0.11.1

只需添加到pubspec.yaml

dependencies: 
  pointycastle: ^1.0.0-rc4

例如,检查单元测试https://github.com/PointyCastle/pointycastle/blob/master/test/key_generators/rsa_key_generator_test.dart


3
投票

我开始使用一些示例代码通过尖尖的城堡生成公钥/私钥对。经过长时间的调试和编辑代码,我得到了以下代码:

  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 pageLook here for some more functions such as encoding to / decoding from PEM]中此人的编辑,


0
投票

您可以使用此结构:

© www.soinside.com 2019 - 2024. All rights reserved.