iPhone 中的 SHA256 密钥生成器
我想使用 SHA256 进行 N 次迭代生成密钥。
他们输入的应该是我的“密码” + “随机数”
我已经看到了苹果提供的加密示例,但它似乎没有提供我的要求(或者可能是可能我没有正确理解)。
我也浏览了下面的链接,但没有使用 SHA256 生成密钥的方法 http://iphonedevelopment.blogspot.com/ 2009/02/strong-encryption-for-cocoa-cocoa-touch.html
等待一些提示。
问候
I want to generate a key using SHA256 with N number of iterations.
They input should be my "password" + "random number"
I have seen the Crypto sample provided by apple but it seems it doesn't provide my requirement(or might be possible I didnt get it properly).
I have gone through below link as well but is doesnt have method to generate a key using SHA256
http://iphonedevelopment.blogspot.com/2009/02/strong-encryption-for-cocoa-cocoa-touch.html
Waiting for some hint.
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个,它对我有用
1)获取平面文本输入的哈希值
2)获取 NSData 的哈希值作为输入
注意:- 我使用了 NSData 类别,所以代码如下
}
Try this, it worked for me
1) To get a hash for plane text input
2) To get hash for NSData as input
Note:- I have used NSData category, so the code is as follow
}