Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was advised to look here: http://exampledepot.com/egs/javax.crypto/DesFile.html for the source code of encryption/decryption using import javax.crypto. I have generated my key via keytool and now I don't know how to pass my generated keys into that application for encryption and decryption.

My situation is, that I have a XML file stored online (it stores configuration details) and before I parse it with a XML parser I have to decrypt it. First of all I should of course encrypt it, before it goes online.

Question is: How to pass my generated keys into code visible in link in first row?

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

How to load a KeyStore is documented in the JavaDoc of the KeyStore class:

KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
// get user password and file input stream
char[] password = getPassword();
java.io.FileInputStream fis = new java.io.FileInputStream("C:/mykeystore.jks");
ks.load(fis, password);
fis.close();

Once you have loaded the key store you can load the key:

Key myKey = ks.getKey("mykeyalias", password);

The key alias is the one you have specified using keytool. Using the myKey you can initialize the Cipher instance or use for example a CipherOutputStream / CipherInputStream

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.