ObjFW
Loading...
Searching...
No Matches
OFPBKDF2.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2008-2024 Jonathan Schleifer <js@nil.im>
3 *
4 * All rights reserved.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License version 3.0 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * version 3.0 for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * version 3.0 along with this program. If not, see
17 * <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef __STDC_LIMIT_MACROS
21# define __STDC_LIMIT_MACROS
22#endif
23#ifndef __STDC_CONSTANT_MACROS
24# define __STDC_CONSTANT_MACROS
25#endif
26
27#import "macros.h"
28
29OF_ASSUME_NONNULL_BEGIN
30
33@class OFHMAC;
34
38typedef struct {
40 __unsafe_unretained OFHMAC *HMAC;
42 size_t iterations;
44 const unsigned char *salt;
46 size_t saltLength;
48 const char *password;
52 unsigned char *key;
58 size_t keyLength;
62
63#ifdef __cplusplus
64extern "C" {
65#endif
75extern void OFPBKDF2(OFPBKDF2Parameters parameters);
76#ifdef __cplusplus
77}
78#endif
79
80OF_ASSUME_NONNULL_END
void OFPBKDF2(OFPBKDF2Parameters parameters)
Derives a key from a password and a salt using PBKDF2.
Definition OFPBKDF2.m:33
A class which provides methods to calculate an HMAC.
Definition OFHMAC.h:32
The parameters for OFPBKDF2.
Definition OFPBKDF2.h:38
size_t passwordLength
The length of the password.
Definition OFPBKDF2.h:50
size_t saltLength
The length of the salt.
Definition OFPBKDF2.h:46
unsigned char * key
The buffer to write the key to.
Definition OFPBKDF2.h:52
bool allowsSwappableMemory
Whether data may be stored in swappable memory.
Definition OFPBKDF2.h:60
size_t keyLength
The desired length for the derived key.
Definition OFPBKDF2.h:58
size_t iterations
The number of iterations to perform.
Definition OFPBKDF2.h:42
__unsafe_unretained OFHMAC * HMAC
The HMAC to use to derive a key.
Definition OFPBKDF2.h:40
const char * password
The password to derive a key from.
Definition OFPBKDF2.h:48
const unsigned char * salt
The salt to derive a key with.
Definition OFPBKDF2.h:44