src: remove old md5 API

This commit is contained in:
Marvin Scholz 2020-04-01 16:48:06 +02:00
parent 86c4584ecd
commit 828fafb3d9
7 changed files with 8 additions and 84 deletions

View File

@ -427,7 +427,7 @@ typedef struct block_t block_t;
typedef struct block_fifo_t block_fifo_t;
/* Hashing */
typedef struct md5_s md5_t;
typedef struct vlc_hash_md5_ctx vlc_hash_md5_t;
/* XML */
typedef struct xml_t xml_t;

View File

@ -25,8 +25,6 @@
#ifndef VLC_HASH_H
# define VLC_HASH_H
#include <vlc_md5.h>
/**
* \defgroup vlc_hash Hash functions
* APIs for simple and frequently used hash algorithms in VLC
@ -85,7 +83,12 @@
*/
typedef struct vlc_hash_md5_ctx
{
struct md5_s priv; /**< \internal Private */
struct md5_s {
uint32_t A, B, C, D; /* chaining variables */
uint32_t nblocks;
uint8_t buf[64];
int count;
} priv; /**< \internal Private */
} vlc_hash_md5_t;
/**

View File

@ -1,59 +0,0 @@
/*****************************************************************************
* vlc_md5.h: MD5 hash
*****************************************************************************
* Copyright © 2004-2011 VLC authors and VideoLAN
*
* Authors: Rémi Denis-Courmont
* Rafaël Carré
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* 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 License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef VLC_MD5_H
# define VLC_MD5_H
/**
* \file
* This file defines functions and structures to compute MD5 digests
*/
struct md5_s
{
uint32_t A, B, C, D; /* chaining variables */
uint32_t nblocks;
uint8_t buf[64];
int count;
};
VLC_API void InitMD5( struct md5_s * );
VLC_API void AddMD5( struct md5_s *, const void *, size_t );
VLC_API void EndMD5( struct md5_s * );
/**
* Returns a char representation of the md5 hash, as shown by UNIX md5 or
* md5sum tools.
*/
static inline char * psz_md5_hash( struct md5_s *md5_s )
{
char *psz = (char*)malloc( 33 ); /* md5 string is 32 bytes + NULL character */
if( likely(psz) )
{
for( int i = 0; i < 16; i++ )
sprintf( &psz[2*i], "%02" PRIx8, md5_s->buf[i] );
}
return psz;
}
#endif

View File

@ -27,7 +27,6 @@ include/vlc_image.h
include/vlc_input.h
include/vlc_intf_strings.h
include/vlc_iso_lang.h
include/vlc_md5.h
include/vlc_messages.h
include/vlc_meta.h
include/vlc_modules.h

View File

@ -64,7 +64,6 @@ pluginsinclude_HEADERS = \
../include/vlc_interface.h \
../include/vlc_keystore.h \
../include/vlc_list.h \
../include/vlc_md5.h \
../include/vlc_media_source.h \
../include/vlc_messages.h \
../include/vlc_meta.h \

View File

@ -1,6 +1,5 @@
access_vaDirectoryControlHelper
vlc_access_NewMRL
AddMD5
aout_BitsPerSample
aout_ChannelExtract
aout_ChannelReorder
@ -93,7 +92,6 @@ vlc_demux_chained_New
vlc_demux_chained_Send
vlc_demux_chained_ControlVa
vlc_demux_chained_Delete
EndMD5
es_format_Clean
es_format_Copy
es_format_Init
@ -163,7 +161,6 @@ image_HandlerCreate
image_HandlerDelete
image_Mime2Fourcc
image_Type2Fourcc
InitMD5
vlc_input_decoder_Create
vlc_input_decoder_Delete
vlc_input_decoder_Decode

View File

@ -334,22 +334,7 @@ md5_read( void *context )
}
#endif
void InitMD5( struct md5_s *h )
{
md5_init( h );
}
void AddMD5( struct md5_s *restrict h, const void *data, size_t len )
{
md5_write( h, data, len );
}
void EndMD5( struct md5_s *h )
{
md5_final( h );
}
/* New API */
/* Public API */
void vlc_hash_md5_Init(vlc_hash_md5_t *ctx)
{
md5_init(&ctx->priv);