Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hey, I need to use the GCrypt library from within an XCode Objective-C project. I'm totally new to programming with such so apologies if this is a somewhat silly question. Is this possible and, if so, how may I go about it?

Thanks, Tim

share|improve this question
How totally new? Have you written any code before? Have you used any C libraries before in C or Obj-C? – Slomojo Dec 14 '10 at 22:30
(I ask because this is a fairly advanced topic, and you should be at least comfortable with the basics of compiling and linking (without using XCode) before you can happily play with a C library) - Try working your way through the general libcrypt docs, and even write a small C program to test drive using it so you can feel more comfortable. – Slomojo Dec 14 '10 at 22:42
Yep, I've got experience in C and a lot more. I just haven't got much experience with GCrypt and Objective C. – user542603 Jan 2 '11 at 22:50

1 Answer

up vote 1 down vote accepted

You can use C in Objective C directly, so you would access GCrypt as you would in regular C.

At the most basic level, include the libcrypt source in your project and then use

#include <gcrypt.h>

In source files that you need to access the gcrypt api.

For some general info on using libraries in Xcode see this (Also includes a script called FrameworkMaker which can turn a generic library into a .framework file.)

share|improve this answer
I get errors, presumably because it isn't being linked. How can I do that in XCode? – user542603 Dec 15 '10 at 0:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.