]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/md5.h
Fix typo in CONTRIBUTING.md
[thirdparty/openssl.git] / include / openssl / md5.h
CommitLineData
21dcbebc 1/*
eec0ad10 2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
0f113f3e 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
ae4186b0
DMSP
10#ifndef OPENSSL_MD5_H
11# define OPENSSL_MD5_H
d86167ec
DMSP
12# pragma once
13
14# include <openssl/macros.h>
936c2b9e 15# ifndef OPENSSL_NO_DEPRECATED_3_0
d86167ec
DMSP
16# define HEADER_MD5_H
17# endif
58964a49 18
3c27208f
RS
19# include <openssl/opensslconf.h>
20
21# ifndef OPENSSL_NO_MD5
b250fc7b
P
22# include <openssl/e_os2.h>
23# include <stddef.h>
24# ifdef __cplusplus
58964a49 25extern "C" {
b250fc7b
P
26# endif
27
28# define MD5_DIGEST_LENGTH 16
f5d7a031 29
b250fc7b 30# if !defined(OPENSSL_NO_DEPRECATED_3_0)
bd3576d2
UM
31/*
32 * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
04f8bcf1 33 * ! MD5_LONG has to be at least 32 bits wide. !
bd3576d2
UM
34 * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
35 */
b250fc7b 36# define MD5_LONG unsigned int
bd3576d2 37
b250fc7b
P
38# define MD5_CBLOCK 64
39# define MD5_LBLOCK (MD5_CBLOCK/4)
58964a49 40
0f113f3e
MC
41typedef struct MD5state_st {
42 MD5_LONG A, B, C, D;
43 MD5_LONG Nl, Nh;
44 MD5_LONG data[MD5_LBLOCK];
45 unsigned int num;
46} MD5_CTX;
b250fc7b 47# endif
5fb0f317
RL
48# ifndef OPENSSL_NO_DEPRECATED_3_0
49OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
50OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
51OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
52OSSL_DEPRECATEDIN_3_0 unsigned char *MD5(const unsigned char *d, size_t n,
53 unsigned char *md);
54OSSL_DEPRECATEDIN_3_0 void MD5_Transform(MD5_CTX *c, const unsigned char *b);
55# endif
b250fc7b
P
56
57# ifdef __cplusplus
58964a49 58}
b250fc7b 59# endif
3c27208f 60# endif
58964a49
RE
61
62#endif