1214501Srpaulo/*
2214501Srpaulo * PKCS #5 (Password-based Encryption)
3214501Srpaulo * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
4214501Srpaulo *
5252726Srpaulo * This software may be distributed under the terms of the BSD license.
6252726Srpaulo * See README for more details.
7214501Srpaulo */
8214501Srpaulo
9214501Srpaulo#ifndef PKCS5_H
10214501Srpaulo#define PKCS5_H
11214501Srpaulo
12214501Srpaulou8 * pkcs5_decrypt(const u8 *enc_alg, size_t enc_alg_len,
13214501Srpaulo		   const u8 *enc_data, size_t enc_data_len,
14214501Srpaulo		   const char *passwd, size_t *data_len);
15214501Srpaulo
16214501Srpaulo#endif /* PKCS5_H */
17