我可以在我的 xcode 项目中嵌入任何 NTLM 质询响应身份验证代码吗?
我正在寻找一些可以嵌入到我的 xcode 项目(对于我的 iPhone 应用程序)中的 NTLM 质询响应身份验证代码,例如,通过输入密码和 8 字节质询,代码可以生成 24 字节响应。
我检查了 samba 源代码,发现我不可能将进行 NTLM 质询响应身份验证的部分删除并将其添加到我的 xcode 项目中。那么我可以求助于其他来源吗?
谢谢!
I am looking for some NTLM challenge-response authentication codes I can embed in my xcode project (for my iPhone app) so for example, with input of password and 8 bytes of challenge, the code can generate 24 bytes response.
I check samba source code and find that it is impossible for me to cut the part doing NTLM challenge-response authentication and add it to my xcode project. So any other source I can resort to ?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
完整规范可从 Microsoft 获取作为开放规范。我不知道 Objective C 实现,因此根据规范构建您自己的实现可能是最简单的。
The full specification is available from Microsoft as an Open Specification. I'm not aware of an Objective C implementation, so it may be easiest to simply build your own from the specification.
我终于设法解决了它。
所以首先我需要将 openssl 添加到我的 iPhone 项目中,b/c 我需要 MD4 和 DES。我不确定是否还有其他方法获取 MD4 & DES。值得庆幸的是,有人已经将 openssl 添加到了 xcode,请查看此处 http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/
然后添加 ntlm 实现。我在这里使用了示例代码, http://www.innovation.ch/personal/ronald/ ntlm.html
不过需要注意的是,示例代码有一些问题(我花了几个小时才弄清楚)。但我们也可以使用那里的关键字(函数名称)进行谷歌代码搜索以找到正确的实现。
I finally managed to solve it.
So first I need to add openssl to my iPhone project b/c I need to MD4 and DES. I am not sure if there is other way to get MD4 & DES. And thankfully someone has already added openssl to xcode, check here http://www.x2on.de/2010/02/01/tutorial-iphone-app-with-compiled-openssl-library/
Then add ntlm implementation upon that. I used the sample code here, http://www.innovation.ch/personal/ronald/ntlm.html
A note though, that sample code has some problem (it took me several hours figured that out). But we can also use keywords there(the function name) to do google code search to find correct implementation.