57

I'm wondering if it's possible to recover a RSA public key that I have converted to byte array previously.

byte[] keyBytes = publicKey.getEncoded();

Thanks for the help.

Sinan Ünür
  • 115,191
  • 15
  • 191
  • 333
kiewic
  • 15,130
  • 13
  • 74
  • 95

3 Answers3

114
PublicKey publicKey = 
    KeyFactory.getInstance("RSA").generatePublic(new X509EncodedKeySpec(bytes));

For more info see this tutorial

madth3
  • 7,151
  • 12
  • 47
  • 72
Bozho
  • 572,413
  • 138
  • 1,043
  • 1,132
44

For others who want to get private key instead of public key from byte array:

PrivateKey privateKey = KeyFactory.getInstance("RSA").generatePrivate(new PKCS8EncodedKeySpec(privateKeyBytes));
Marko Kotar
  • 439
  • 4
  • 4
-1

Great answer. Thanks for the link. Just for complete, I found this Converted secret key into bytes, how to convert it back to secrect key?

SecretKey key2 = new SecretKeySpec(data, 0, data.length, "DES");

and just worked very well.

Community
  • 1
  • 1
Adrien
  • 346
  • 3
  • 9