1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-01 22:28:02 +02:00
gnupg/cipher/rmd.h

48 lines
1.4 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* rmd.h - RIPE-MD hash functions
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
* This file is part of GnuPG.
1997-11-18 15:06:00 +01:00
*
* GnuPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GnuPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifndef G10_RMD_H
#define G10_RMD_H
1998-06-16 17:13:28 +02:00
/* we need this here because random.c must have direct access */
1997-11-18 15:06:00 +01:00
typedef struct {
u32 h0,h1,h2,h3,h4;
u32 nblocks;
1998-01-12 11:18:17 +01:00
byte buf[64];
int count;
} RMD160_CONTEXT;
1997-11-18 15:06:00 +01:00
1998-06-16 17:13:28 +02:00
void rmd160_init( RMD160_CONTEXT *hd );
1998-03-09 22:44:06 +01:00
void rmd160_mixblock( RMD160_CONTEXT *hd, char *buffer );
1998-06-16 17:13:28 +02:00
const char *
rmd160_get_info( int algo, size_t *contextsize,
byte **r_asnoid, int *r_asn_len, int *r_mdlen,
void (**r_init)( void *c ),
void (**r_write)( void *c, byte *buf, size_t nbytes ),
void (**r_final)( void *c ),
byte *(**r_read)( void *c )
);
1997-11-18 15:06:00 +01:00
#endif /*G10_RMD_H*/