ObjXMPP  Check-in [1ea39ac77e]

Overview
Comment:Add Xcode project.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1ea39ac77eabf9953ac4ecac6016a1bd4b3e912bb5e336c5199de8ad365b9c2a
User & Date: js on 2011-03-21 16:51:44
Other Links: manifest | tags
Context
2011-03-21
17:05
Make use of class extensions. check-in: 724b040c1a user: js tags: trunk
16:51
Add Xcode project. check-in: 1ea39ac77e user: js tags: trunk
15:15
Request session and send initial presence in tests. check-in: ae80606d3d user: js tags: trunk
Changes

Added Info.plist version [f1ca1af87f].

Added ObjXMPP.xcodeproj/project.pbxproj version [6bdb1685bb].

Modified src/XMPPSCRAMAuth.m from [e90f7d753a] to [fa1e8e1b1b].

195
196
197
198
199
200
201
202

203
204
205
206
207

208
209
210
211
212
213
214
195
196
197
198
199
200
201

202
203
204
205
206

207
208
209
210
211
212
213
214







-
+




-
+







	[pool release];

	return [hash digest];
}

- (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];

	@try {
		memset(result, 0, digestSize);