]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/whrlpool.h
Deprecate the low level Diffie-Hellman functions.
[thirdparty/openssl.git] / include / openssl / whrlpool.h
CommitLineData
21dcbebc
RS
1/*
2 * Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
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
8 */
9
ae4186b0
DMSP
10#ifndef OPENSSL_WHRLPOOL_H
11# define OPENSSL_WHRLPOOL_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_WHRLPOOL_H
17# endif
d1593e6b 18
c52ec197 19# include <openssl/opensslconf.h>
3c27208f
RS
20
21# ifndef OPENSSL_NO_WHIRLPOOL
c52ec197
P
22# include <openssl/e_os2.h>
23# include <stddef.h>
24# ifdef __cplusplus
d1593e6b 25extern "C" {
c52ec197 26# endif
d1593e6b 27
c52ec197 28# define WHIRLPOOL_DIGEST_LENGTH (512/8)
7c3aa39f
P
29
30# if !defined(OPENSSL_NO_DEPRECATED_3_0)
31
32# define WHIRLPOOL_BBLOCK 512
33# define WHIRLPOOL_COUNTER (256/8)
d1593e6b 34
0f113f3e
MC
35typedef struct {
36 union {
37 unsigned char c[WHIRLPOOL_DIGEST_LENGTH];
38 /* double q is here to ensure 64-bit alignment */
39 double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)];
40 } H;
41 unsigned char data[WHIRLPOOL_BBLOCK / 8];
42 unsigned int bitoff;
43 size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)];
44} WHIRLPOOL_CTX;
7c3aa39f 45# endif
d1593e6b 46
7c3aa39f
P
47DEPRECATEDIN_3_0(int WHIRLPOOL_Init(WHIRLPOOL_CTX *c))
48DEPRECATEDIN_3_0(int WHIRLPOOL_Update(WHIRLPOOL_CTX *c,
49 const void *inp, size_t bytes))
50DEPRECATEDIN_3_0(void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp,
51 size_t bits))
52DEPRECATEDIN_3_0(int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c))
53DEPRECATEDIN_3_0(unsigned char *WHIRLPOOL(const void *inp, size_t bytes,
54 unsigned char *md))
55
07980622 56# ifdef __cplusplus
d1593e6b 57}
c52ec197 58# endif
3c27208f 59# endif
d1593e6b
AP
60
61#endif