A Arne macrumors regular Original poster 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 Feb 24, 2009 #2 libcrypto It is included in Leopard as a part of OpenSSL.
H Howiieque macrumors regular Feb 25, 2009 #3 can you give a little more details, i also want to use it?
M MacRumors Guy macrumors member 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.
X xyzeugene macrumors newbie 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...