Add legacy include guards to public header files
[openssl.git] / include / openssl / whrlpool.h
1 /*
2  * Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
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
10 #ifndef OPENSSL_WHRLPOOL_H
11 # define OPENSSL_WHRLPOOL_H
12 # pragma once
13
14 # include <openssl/macros.h>
15 # if !OPENSSL_API_3
16 #  define HEADER_WHRLPOOL_H
17 # endif
18
19 #include <openssl/opensslconf.h>
20
21 # ifndef OPENSSL_NO_WHIRLPOOL
22 # include <openssl/e_os2.h>
23 # include <stddef.h>
24 # ifdef __cplusplus
25 extern "C" {
26 # endif
27
28 # define WHIRLPOOL_DIGEST_LENGTH (512/8)
29 # define WHIRLPOOL_BBLOCK        512
30 # define WHIRLPOOL_COUNTER       (256/8)
31
32 typedef struct {
33     union {
34         unsigned char c[WHIRLPOOL_DIGEST_LENGTH];
35         /* double q is here to ensure 64-bit alignment */
36         double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)];
37     } H;
38     unsigned char data[WHIRLPOOL_BBLOCK / 8];
39     unsigned int bitoff;
40     size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)];
41 } WHIRLPOOL_CTX;
42
43 int WHIRLPOOL_Init(WHIRLPOOL_CTX *c);
44 int WHIRLPOOL_Update(WHIRLPOOL_CTX *c, const void *inp, size_t bytes);
45 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits);
46 int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c);
47 unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md);
48
49 # ifdef __cplusplus
50 }
51 # endif
52 # endif
53
54 #endif