2N/A/* rmd.h - RIPE-MD hash functions
2N/A * Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc.
2N/A *
2N/A * This file is part of Libgcrypt.
2N/A *
2N/A * Libgcrypt is free software; you can redistribute it and/or modify
2N/A * it under the terms of the GNU Lesser General Public License as
2N/A * published by the Free Software Foundation; either version 2.1 of
2N/A * the License, or (at your option) any later version.
2N/A *
2N/A * Libgcrypt is distributed in the hope that it will be useful,
2N/A * but WITHOUT ANY WARRANTY; without even the implied warranty of
2N/A * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2N/A * GNU Lesser General Public License for more details.
2N/A *
2N/A * You should have received a copy of the GNU Lesser General Public
2N/A * License along with this program; if not, write to the Free Software
2N/A * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
2N/A */
2N/A#ifndef G10_RMD_H
2N/A#define G10_RMD_H
2N/A
2N/A
2N/A/* We need this here because random.c must have direct access. */
2N/Atypedef struct
2N/A{
2N/A u32 h0,h1,h2,h3,h4;
2N/A u32 nblocks;
2N/A byte buf[64];
2N/A int count;
2N/A} RMD160_CONTEXT;
2N/A
2N/Avoid _gcry_rmd160_init ( void *context );
2N/Avoid _gcry_rmd160_mixblock ( RMD160_CONTEXT *hd, void *blockof64byte );
2N/A
2N/A#endif /*G10_RMD_H*/
2N/A