Ok, forget the last answer I can't read :) You are working with 3Des keys not RSA keys. I worked on a bunch of code to share keys between .NET, CryptoAPI and openssl. Found a lot of good example code here for doing the key conversions: http://www.jensign.com/JavaScience/cryptoutils/index.html There is some 3des stuff in some of those examples, but it was related to openssl -> .NET iirc. I also just looked back over the RSA key code and one thing I notice I am doing is using Array.Reverse() on all the key parts of the RSA key (D,DP,DQ,InverseQ,Modulus,P,Q) i guess to convert endian. I remember that being non-obvious when first tackling the problem. Hope some of that helps. Good luck.