World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
ripemd.h
См. документацию.
1 /*
2  * Copyright (C) 2007 Michael Niedermayer <michaelni@gmx.at>
3  * Copyright (C) 2013 James Almer <jamrial@gmail.com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
28 #ifndef AVUTIL_RIPEMD_H
29 #define AVUTIL_RIPEMD_H
30 
31 #include <stdint.h>
32 
33 #include "attributes.h"
34 #include "version.h"
35 
44 extern const int av_ripemd_size;
45 
46 struct AVRIPEMD;
47 
51 struct AVRIPEMD *av_ripemd_alloc(void);
52 
60 int av_ripemd_init(struct AVRIPEMD* context, int bits);
61 
69 #if FF_API_CRYPTO_SIZE_T
70 void av_ripemd_update(struct AVRIPEMD* context, const uint8_t* data, unsigned int len);
71 #else
72 void av_ripemd_update(struct AVRIPEMD* context, const uint8_t* data, size_t len);
73 #endif
74 
81 void av_ripemd_final(struct AVRIPEMD* context, uint8_t *digest);
82 
87 #endif /* AVUTIL_RIPEMD_H */
av_ripemd_alloc
struct AVRIPEMD * av_ripemd_alloc(void)
av_ripemd_update
void av_ripemd_update(struct AVRIPEMD *context, const uint8_t *data, unsigned int len)
len
GLenum GLsizei len
Definition: SDL_opengl_glext.h:2929
av_ripemd_init
int av_ripemd_init(struct AVRIPEMD *context, int bits)
av_ripemd_final
void av_ripemd_final(struct AVRIPEMD *context, uint8_t *digest)
attributes.h
uint8_t
unsigned __int8 uint8_t
Definition: SDL_config.h:35
data
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: SDL_opengl.h:1974
bits
GLenum GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const void * bits
Definition: SDL_opengl_glext.h:6179
av_ripemd_size
const int av_ripemd_size