Sn.exe provides options for key management, signature generation, and signature verification.
To create a pair of public and private keys, use the following command -
sn -k keyPair.snk
public key can be extracted using -
sn -p keyPair.snk publicKey.snk
I want to see the corresponding private key of the generated pair,
How can i do this?
source share