Webserver+3d print

Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pkcs5.h Source File

pkcs5.h

Go to the documentation of this file.
00001 /**
00002  * @file pkcs5.h
00003  * @brief PKCS #5 (Password-Based Cryptography Standard)
00004  *
00005  * @section License
00006  *
00007  * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
00008  *
00009  * This file is part of CycloneCrypto Open.
00010  *
00011  * This program is free software; you can redistribute it and/or
00012  * modify it under the terms of the GNU General Public License
00013  * as published by the Free Software Foundation; either version 2
00014  * of the License, or (at your option) any later version.
00015  *
00016  * This program is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU General Public License
00022  * along with this program; if not, write to the Free Software Foundation,
00023  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
00024  *
00025  * @author Oryx Embedded SARL (www.oryx-embedded.com)
00026  * @version 1.7.6
00027  **/
00028 
00029 #ifndef _PKCS5_H
00030 #define _PKCS5_H
00031 
00032 //Dependencies
00033 #include "crypto.h"
00034 
00035 //PKCS #5 related constants
00036 extern const uint8_t PKCS5_OID[8];
00037 extern const uint8_t PBKDF2_OID[9];
00038 
00039 //PKCS #5 related functions
00040 error_t pbkdf1(const HashAlgo *hash, const uint8_t *p, size_t pLen,
00041    const uint8_t *s, size_t sLen, uint_t c, uint8_t *dk, size_t dkLen);
00042 
00043 error_t pbkdf2(const HashAlgo *hash, const uint8_t *p, size_t pLen,
00044    const uint8_t *s, size_t sLen, uint_t c, uint8_t *dk, size_t dkLen);
00045 
00046 #endif
00047