1e5b75505Sopenharmony_ci/* 2e5b75505Sopenharmony_ci * PKCS #5 (Password-based Encryption) 3e5b75505Sopenharmony_ci * Copyright (c) 2009, Jouni Malinen <j@w1.fi> 4e5b75505Sopenharmony_ci * 5e5b75505Sopenharmony_ci * This software may be distributed under the terms of the BSD license. 6e5b75505Sopenharmony_ci * See README for more details. 7e5b75505Sopenharmony_ci */ 8e5b75505Sopenharmony_ci 9e5b75505Sopenharmony_ci#ifndef PKCS5_H 10e5b75505Sopenharmony_ci#define PKCS5_H 11e5b75505Sopenharmony_ci 12e5b75505Sopenharmony_ciu8 * pkcs5_decrypt(const u8 *enc_alg, size_t enc_alg_len, 13e5b75505Sopenharmony_ci const u8 *enc_data, size_t enc_data_len, 14e5b75505Sopenharmony_ci const char *passwd, size_t *data_len); 15e5b75505Sopenharmony_ci 16e5b75505Sopenharmony_ci#endif /* PKCS5_H */ 17