Giter VIP home page Giter VIP logo

flutter_rsa_generator_example's Introduction

Flutter RSA Key Generator

This project shows how to use Pointy Castle to generate a RSA Key and encode it to a PKCS1 Pem String.

In order to generate a new RSA Keypair we use RSAKeyGenerator

AsymmetricKeyPair<PublicKey, PrivateKey> computeRSAKeyPair(
    SecureRandom secureRandom) {
  var rsapars = new RSAKeyGeneratorParameters(BigInt.from(65537), 2048, 12);
  var params = new ParametersWithRandom(rsapars, secureRandom);
  var keyGenerator = new RSAKeyGenerator();
  keyGenerator.init(params);
  return keyGenerator.generateKeyPair();
}

To be able generate the keys in a background thread we use Dart's Isolate implemented in Flutter's compute. We must ensure that the computeRSAKeyPair function is placed outside a Class so that it can be called globally.

Future<AsymmetricKeyPair<PublicKey, PrivateKey>> getRSAKeyPair(
  SecureRandom secureRandom) async {
  return await compute(computeRSAKeyPair, secureRandom);
}

flutter_rsa_generator_example's People

Contributors

vanethos avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

flutter_rsa_generator_example's Issues

Wrong PEM encoding: RSAPrivateKey.exponent returns the private exponent

See here:

var publicExponent = ASN1Integer(privateKey.exponent);

I used this helper function to calculate the public exponent:

// inverse of private exponent -> public exponent
//! \sa rsa_key_generator.dart
static BigInt getPublicExponent(RSAPrivateKey privateKey) {
  var pSub1 = (privateKey.p - BigInt.one);
  var qSub1 = (privateKey.q - BigInt.one);
  var phi = (pSub1 * qSub1);
  var publicExponent = privateKey.exponent.modInverse(phi);
  return publicExponent;
}

Encrypt and decrypt text

Hello good day just wanna thank you for making this easy to use but please i wanna know how to encrypt and decrypt a text or is there any place you have already done it that i might have missed. Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.