Add Xcode project.

This commit is contained in:
Jonathan Schleifer 2011-03-21 17:51:44 +01:00
parent ae01053f1c
commit 88b1e827a8
3 changed files with 366 additions and 2 deletions

View file

@ -199,12 +199,12 @@ extern uint32_t arc4random_uniform(uint32_t);
- (OFDataArray*)_hiWithData: (OFDataArray *)str
salt: (OFDataArray *)salt_
iterationCount: (unsigned int)i
iterationCount: (intmax_t)i
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
size_t digestSize = [hashType digestSize];
uint8_t *result = NULL, *u, *uOld;
unsigned int j, k;
intmax_t j, k;
OFDataArray *salty, *tmp, *ret;
result = [self allocMemoryWithSize: digestSize];