2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2016-08-02 02:18:44 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @ingroup lavu_md5
|
|
|
|
* Public header for MD5 hash function implementation.
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVUTIL_MD5_H
|
|
|
|
#define AVUTIL_MD5_H
|
2006-07-01 10:02:08 +00:00
|
|
|
|
2007-06-16 22:59:13 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-10-11 12:08:04 +00:00
|
|
|
#include "attributes.h"
|
|
|
|
#include "version.h"
|
|
|
|
|
2011-11-20 19:38:24 +00:00
|
|
|
/**
|
|
|
|
* @defgroup lavu_md5 MD5
|
2016-08-02 02:18:44 +00:00
|
|
|
* @ingroup lavu_hash
|
|
|
|
* MD5 hash function implementation.
|
|
|
|
*
|
2011-11-20 19:38:24 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2012-10-12 16:58:55 +00:00
|
|
|
extern const int av_md5_size;
|
2006-07-01 10:02:08 +00:00
|
|
|
|
|
|
|
struct AVMD5;
|
|
|
|
|
2013-06-14 08:42:57 +00:00
|
|
|
/**
|
|
|
|
* Allocate an AVMD5 context.
|
|
|
|
*/
|
2012-10-11 12:08:04 +00:00
|
|
|
struct AVMD5 *av_md5_alloc(void);
|
2013-06-14 08:42:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize MD5 hashing.
|
|
|
|
*
|
|
|
|
* @param ctx pointer to the function context (of size av_md5_size)
|
|
|
|
*/
|
2006-07-01 10:02:08 +00:00
|
|
|
void av_md5_init(struct AVMD5 *ctx);
|
2013-06-14 08:42:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Update hash value.
|
|
|
|
*
|
|
|
|
* @param ctx hash function context
|
|
|
|
* @param src input data to update hash with
|
|
|
|
* @param len input data length
|
|
|
|
*/
|
2013-05-17 18:28:03 +00:00
|
|
|
void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, int len);
|
2013-06-14 08:42:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Finish hashing and output digest value.
|
|
|
|
*
|
|
|
|
* @param ctx hash function context
|
|
|
|
* @param dst buffer where output digest value is stored
|
|
|
|
*/
|
2006-07-01 10:02:08 +00:00
|
|
|
void av_md5_final(struct AVMD5 *ctx, uint8_t *dst);
|
2013-06-14 08:42:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Hash an array of data.
|
|
|
|
*
|
|
|
|
* @param dst The output buffer to write the digest into
|
|
|
|
* @param src The data to hash
|
|
|
|
* @param len The length of the data, in bytes
|
|
|
|
*/
|
2006-07-02 19:01:09 +00:00
|
|
|
void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len);
|
2006-07-01 10:02:08 +00:00
|
|
|
|
2011-11-20 19:38:24 +00:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVUTIL_MD5_H */
|