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

public exponent problem in private key #8

Open
deskangel opened this issue Mar 19, 2021 · 0 comments
Open

public exponent problem in private key #8

deskangel opened this issue Mar 19, 2021 · 0 comments

Comments

@deskangel
Copy link

deskangel commented Mar 19, 2021

The privateKey.exponent is the same as privateExponent, it should be publicExponent

  String encodePrivateKeyToPemPKCS1(RSAPrivateKey privateKey) {
    var topLevel = new ASN1Sequence();

    var version = ASN1Integer(BigInt.from(0));
    var modulus = ASN1Integer(privateKey.n);
    var publicExponent = ASN1Integer(privateKey.exponent);
    var privateExponent = ASN1Integer(privateKey.privateExponent);
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