16 #ifndef __STDC_LIMIT_MACROS 17 # define __STDC_LIMIT_MACROS 19 #ifndef __STDC_CONSTANT_MACROS 20 # define __STDC_CONSTANT_MACROS 25 OF_ASSUME_NONNULL_BEGIN
A class which provides methods to calculate an HMAC.
Definition: OFHMAC.h:27
const char * password
The password to derive a key from.
Definition: OFPBKDF2.h:44
size_t iterations
The number of iterations to perform.
Definition: OFPBKDF2.h:38
unsigned char * key
The buffer to write the key to.
Definition: OFPBKDF2.h:48
bool allowsSwappableMemory
Whether data may be stored in swappable memory.
Definition: OFPBKDF2.h:56
const unsigned char * salt
The salt to derive a key with.
Definition: OFPBKDF2.h:40
The parameters for OFPBKDF2.
Definition: OFPBKDF2.h:34
void OFPBKDF2(OFPBKDF2Parameters parameters)
Derives a key from a password and a salt using PBKDF2.
Definition: OFPBKDF2.m:29
size_t keyLength
The desired length for the derived key.
Definition: OFPBKDF2.h:54
size_t saltLength
The length of the salt.
Definition: OFPBKDF2.h:42
size_t passwordLength
The length of the password.
Definition: OFPBKDF2.h:46