Implementation of PBKDF2-HMAC-SHA256 Objective-C

Can someone point me to an implementation of PBKDF2 using HMAC-SHA256 to generate a key in Objective-C. This is part of the key generation process that I later use to encrypt AES-CBC-Pad.

Thank you in advance

+4
source share
1 answer

You can simply borrow the C implementation from OpenSSL or any other library.

+3
source

Source: https://habr.com/ru/post/1332979/


All Articles