Xuyi Wang / wolfSSL

Dependents:   OS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ripemd.h Source File

ripemd.h

00001 /* ripemd.h
00002  *
00003  * Copyright (C) 2006-2017 wolfSSL Inc.
00004  *
00005  * This file is part of wolfSSL.
00006  *
00007  * wolfSSL is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 2 of the License, or
00010  * (at your option) any later version.
00011  *
00012  * wolfSSL is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License
00018  * along with this program; if not, write to the Free Software
00019  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
00020  */
00021 
00022 /* ripemd.h for openssl */
00023 
00024 
00025 #ifndef WOLFSSL_RIPEMD_H_
00026 #define WOLFSSL_RIPEMD_H_
00027 
00028 #include <wolfssl/wolfcrypt/settings.h>
00029 
00030 #ifdef __cplusplus
00031     extern "C" {
00032 #endif
00033 
00034 
00035 typedef struct WOLFSSL_RIPEMD_CTX {
00036     int holder[32];   /* big enough to hold wolfcrypt, but check on init */
00037 } WOLFSSL_RIPEMD_CTX;
00038 
00039 WOLFSSL_API void wolfSSL_RIPEMD_Init(WOLFSSL_RIPEMD_CTX*);
00040 WOLFSSL_API void wolfSSL_RIPEMD_Update(WOLFSSL_RIPEMD_CTX*, const void*,
00041                                      unsigned long);
00042 WOLFSSL_API void wolfSSL_RIPEMD_Final(unsigned char*, WOLFSSL_RIPEMD_CTX*);
00043 
00044 
00045 typedef WOLFSSL_RIPEMD_CTX RIPEMD_CTX;
00046 
00047 #define RIPEMD_Init   wolfSSL_RIPEMD_Init
00048 #define RIPEMD_Update wolfSSL_RIPEMD_Update
00049 #define RIPEMD_Final  wolfSSL_RIPEMD_Final
00050 
00051 
00052 #ifdef __cplusplus
00053     }  /* extern "C" */ 
00054 #endif
00055 
00056 
00057 #endif /* WOLFSSL_MD5_H_ */
00058 
00059