如何在 iOS 设备上创建 PBKDF2 密钥

发布于 2024-10-29 18:31:39 字数 237 浏览 1 评论 0原文

我需要创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话墙 2024-11-05 18:31:39

您可以使用 openssl/evp.h 中的 PKCS5_PBKDF2_HMAC_SHA1() 函数。从声明中推断如何使用该函数非常容易:

int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen,
               const unsigned char *salt, int saltlen, int iter,
               int keylen, unsigned char *out);

You can use the PKCS5_PBKDF2_HMAC_SHA1() function in openssl/evp.h. Divining how to use the function is pretty easy from the declaration:

int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen,
               const unsigned char *salt, int saltlen, int iter,
               int keylen, unsigned char *out);
天涯沦落人 2024-11-05 18:31:39

我认为 p5_crpt2.c就是您正在寻找的。

I think p5_crpt2.c is what you are looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文