如何在 iOS 设备上创建 PBKDF2 密钥
我需要创建一个 PBKDF2 密钥,以便在 iPhone Xcode 应用程序的 AES 加密例程中使用。我已经看到有关使用 OpenSSL 来执行此操作的参考,但没有找到有关要调用 OpenSSL 中的模块的具体参考。
我扫描了各种 OpenSSL .h 文件,寻找进行此调用的方法,但到目前为止尚未成功。
我将使用的密钥是 5 位数字,Salt 是 12 个字符,迭代次数是 1000,并且我需要一个 128 位生成的密钥。
I need to create a PBKDF2 key to use in my AES encryption routine in my iPhone Xcode application. I have seen references to using OpenSSL to do this, but not found specific references to what module within OpenSSL to call.
I have scanned various OpenSSL .h files searching for a means to make this call, but have so far been unsuccessful.
The key I will be using is 5-digits, Salt is 12 characters, Iterations is 1000, and I need a 128-bit generated key.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
openssl/evp.h
中的PKCS5_PBKDF2_HMAC_SHA1()
函数。从声明中推断如何使用该函数非常容易:You can use the
PKCS5_PBKDF2_HMAC_SHA1()
function inopenssl/evp.h
. Divining how to use the function is pretty easy from the declaration:我认为 p5_crpt2.c就是您正在寻找的。
I think p5_crpt2.c is what you are looking for.