| Author |
How to view the contents of a .rsa file?
|
Darren Alexandria
Ranch Hand
Joined: Aug 17, 2007
Posts: 185
|
|
I want to view the contents of an .rsa file? Is there a tool? Or a way? I have tried to view it in a notepad but I cannot understand the contents. Thanks.
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
What is a .rsa file? Are you asking about signed applets? Or something else? [ October 31, 2007: Message edited by: Paul Sturrock ]
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Darren Alexandria
Ranch Hand
Joined: Aug 17, 2007
Posts: 185
|
|
Yes, I will use it in signed applets. I don't know exactly what .rsa means, but according to wikipedia.org: RSA is an algorithm for public-key cryptography. It was the first algorithm known to be suitable for signing as well as encryption, and one of the first great advances in public key cryptography. RSA is widely used in electronic commerce protocols, and is believed to be secure given sufficiently long keys and the use of up-to-date implementations. Thanks for your reply.
|
 |
Pat Farrell
Rancher
Joined: Aug 11, 2007
Posts: 4422
|
|
RSA is the name of the standard public key encryption algorithm. I have never heard of a ".rsa" file. Ask whoever gave you the file what it really is. In general, when you use RSA, you have key files (containing your RSA keys) and some cleartext file that you want to encipher. You use your keys, the cleartext and an implementation of RSA to encipher the file. Or the other direction, you have a cipher text file, and your RSA keys, you use the RSA algorithm to decipher the file. The keys are usually kept in a nasty binary format defined by RSA labs called PKCS #1 or #7, which is really ANS.1 BER/DER format. It is unreadible without serious binary mangling. This is not really an advanced question, and probably belongs in Security or another forum
|
 |
Darren Alexandria
Ranch Hand
Joined: Aug 17, 2007
Posts: 185
|
|
Okay thanks for your comment. God bless.
|
 |
 |
|
|
subject: How to view the contents of a .rsa file?
|
|
|