I want to add the SCrypt library to my XCode Objective-C project. However I am getting a very large number of error of the following type:
blkcpy(void * dest, void * src, size_t len)
{
size_t * D = dest; //cannot initialize a variable of type size_t * (aka 'unsigned long) with an lvalue of type void *
size_t * S = src;/cannot initialize a variable of type size_t * (aka 'unsigned long) with an lvalue of type void *
size_t L = len / sizeof(size_t);
size_t i;
for (i = 0; i < L; i++)
D[i] = S[i];
}
What do do about this? Has anybody ever added the scrypt library to XCode?