]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/ripemd.h
Following the license change, modify the boilerplates in include/ and crypto/include/
[thirdparty/openssl.git] / include / openssl / ripemd.h
CommitLineData
21dcbebc
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
58964a49 3 *
48f4ad77 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
58964a49
RE
8 */
9
10#ifndef HEADER_RIPEMD_H
0f113f3e 11# define HEADER_RIPEMD_H
58964a49 12
3c27208f
RS
13# include <openssl/opensslconf.h>
14
15#ifndef OPENSSL_NO_RMD160
0f113f3e
MC
16# include <openssl/e_os2.h>
17# include <stddef.h>
3c27208f 18# ifdef __cplusplus
58964a49 19extern "C" {
0f113f3e 20# endif
f5d7a031 21
04f8bcf1 22# define RIPEMD160_LONG unsigned int
28e0be13 23
0f113f3e
MC
24# define RIPEMD160_CBLOCK 64
25# define RIPEMD160_LBLOCK (RIPEMD160_CBLOCK/4)
26# define RIPEMD160_DIGEST_LENGTH 20
58964a49 27
0f113f3e
MC
28typedef struct RIPEMD160state_st {
29 RIPEMD160_LONG A, B, C, D, E;
30 RIPEMD160_LONG Nl, Nh;
31 RIPEMD160_LONG data[RIPEMD160_LBLOCK];
32 unsigned int num;
33} RIPEMD160_CTX;
58964a49 34
2dc769a1 35int RIPEMD160_Init(RIPEMD160_CTX *c);
9e0aad9f 36int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len);
2dc769a1 37int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c);
0f113f3e 38unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md);
28e0be13 39void RIPEMD160_Transform(RIPEMD160_CTX *c, const unsigned char *b);
3c27208f
RS
40
41# ifdef __cplusplus
58964a49 42}
3c27208f
RS
43# endif
44# endif
45
58964a49
RE
46
47#endif