tags:

views:

267

answers:

2

How to convert the .snk RSA keypair file used to sign the .NET assemblies to XML based files that can be used with PHP or other software?

XML file sample:

<BitStrength>1024</BitStrength><RSAKeyValue><Modulus>tk=</Modulus><Exponent>QB</Exponent></RSAKeyValue>
+1  A: 

That sounds more like you should be using makecert or similar (or a certificate reseller), and exporting that as public/private key file(s)? Strong name keys (snk) are a bit different...

Marc Gravell
A: 

You have to convert your snk file to PEM format and use the openssl functions to encrypt.

Priyank Bolia