FFmpeg
Files | Functions | Variables

Files

file  ripemd.h
 

Functions

struct AVRIPEMDav_ripemd_alloc (void)
 Allocate an AVRIPEMD context. More...
 
int av_ripemd_init (struct AVRIPEMD *context, int bits)
 Initialize RIPEMD hashing. More...
 
void av_ripemd_update (struct AVRIPEMD *context, const uint8_t *data, size_t len)
 Update hash value. More...
 
void av_ripemd_final (struct AVRIPEMD *context, uint8_t *digest)
 Finish hashing and output digest value. More...
 

Variables

const int av_ripemd_size
 

Detailed Description

RIPEMD hash function implementation.

Function Documentation

◆ av_ripemd_alloc()

struct AVRIPEMD* av_ripemd_alloc ( void  )

Allocate an AVRIPEMD context.

Definition at line 46 of file ripemd.c.

Referenced by av_hash_alloc(), and main().

◆ av_ripemd_init()

int av_ripemd_init ( struct AVRIPEMD context,
int  bits 
)

Initialize RIPEMD hashing.

Parameters
contextpointer to the function context (of size av_ripemd_size)
bitsnumber of bits in digest (128, 160, 256 or 320 bits)
Returns
zero if initialization succeeded, -1 otherwise

Definition at line 466 of file ripemd.c.

Referenced by av_hash_init(), and main().

◆ av_ripemd_update()

void av_ripemd_update ( struct AVRIPEMD context,
const uint8_t *  data,
size_t  len 
)

Update hash value.

Parameters
contexthash function context
datainput data to update hash with
leninput data length

Definition at line 516 of file ripemd.c.

Referenced by av_hash_update(), av_ripemd_final(), and main().

◆ av_ripemd_final()

void av_ripemd_final ( struct AVRIPEMD context,
uint8_t *  digest 
)

Finish hashing and output digest value.

Parameters
contexthash function context
digestbuffer where output digest value is stored

Definition at line 548 of file ripemd.c.

Referenced by av_hash_final(), and main().

Variable Documentation

◆ av_ripemd_size

const int av_ripemd_size

Definition at line 44 of file ripemd.c.