A Arne macrumors regular Original poster May 14, 2006 172 0 Germany Feb 24, 2009 #1 Hello, as the title indicates, I am looking for a Class that does RSA Encryption and Decryption. I want to use it in an Objective-C/Cocoa Program, so it should be written in C. What do you typically use? Thanks in advance!
Hello, as the title indicates, I am looking for a Class that does RSA Encryption and Decryption. I want to use it in an Objective-C/Cocoa Program, so it should be written in C. What do you typically use? Thanks in advance!
M MacRumors Guy macrumors member Sep 17, 2008 82 0 Feb 24, 2009 #2 libcrypto It is included in Leopard as a part of OpenSSL.
H Howiieque macrumors regular Feb 1, 2009 120 0 Feb 25, 2009 #3 can you give a little more details, i also want to use it?
M MacRumors Guy macrumors member Sep 17, 2008 82 0 Feb 25, 2009 #4 Here is the man page for the RSA functions. You can't get more info for each function from the respective man pages. For example: Code: man RSA_generate_key An usage example can be found on StackOverflow.
Here is the man page for the RSA functions. You can't get more info for each function from the respective man pages. For example: Code: man RSA_generate_key An usage example can be found on StackOverflow.
A Arne macrumors regular Original poster May 14, 2006 172 0 Germany Feb 25, 2009 #5 ok thank you very much! you helped a lot
X xyzeugene macrumors newbie Feb 13, 2009 25 0 Feb 25, 2009 #6 you can also use C language RSA source.
X xyzeugene macrumors newbie Feb 13, 2009 25 0 Feb 25, 2009 #7 Ive use this before - this is the way to go unless you want to make it super duper fast. MacRumors Guy said: libcrypto It is included in Leopard as a part of OpenSSL. Click to expand...
Ive use this before - this is the way to go unless you want to make it super duper fast. MacRumors Guy said: libcrypto It is included in Leopard as a part of OpenSSL. Click to expand...