Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong PEM encoding: RSAPrivateKey.exponent returns the private exponent #4

Open
elsamuko opened this issue Feb 15, 2020 · 0 comments
Open

Comments

@elsamuko
Copy link

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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant