Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Sn.exe provides options for key management, signature generation, and signature verification.

For creating public and private key pair following command is used-

sn -k keyPair.snk

public key could be extracted using-

sn -p keyPair.snk publicKey.snk

I want to see the corresponding private key of the pair generated,

How can i do that ?

share|improve this question
1  
Please tag your question with appropriate technologies like .Net, C#, VB or C++, for better response. – yogi Oct 22 '12 at 5:45
1  
Possible duplicate stackoverflow.com/questions/3412011/… , Plz refer to this link too msdn.microsoft.com/en-us/library/k5b5tt23%28VS.80%29.aspx – yogi Oct 22 '12 at 5:48
There is enough information in the private key to trivially re-derive the public key information. As such, there's no point in extracting just the private key. – Damien_The_Unbeliever Oct 22 '12 at 7:02
If i need to decrypt data encrypted by my public key,i'll need private key to do the same.What will b the process to do it?-Damien – maatu Oct 23 '12 at 7:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.