Constify X509_PUBKEY_get(), X509_PUBKEY_get0(), and X509_PUBKEY_get0_param()
[openssl.git] / include / openssl / blowfish.h
1 /*
2  * Copyright 1995-2020 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_BLOWFISH_H
11 # define OPENSSL_BLOWFISH_H
12 # pragma once
13
14 # include <openssl/macros.h>
15 # ifndef OPENSSL_NO_DEPRECATED_3_0
16 #  define HEADER_BLOWFISH_H
17 # endif
18
19 # include <openssl/opensslconf.h>
20
21 # ifndef OPENSSL_NO_BF
22 # include <openssl/e_os2.h>
23 # ifdef  __cplusplus
24 extern "C" {
25 # endif
26
27 # define BF_BLOCK        8
28
29 # ifndef OPENSSL_NO_DEPRECATED_3_0
30
31 #  define BF_ENCRYPT      1
32 #  define BF_DECRYPT      0
33
34 /*-
35  * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
36  * ! BF_LONG has to be at least 32 bits wide.                     !
37  * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
38  */
39 #  define BF_LONG unsigned int
40
41 #  define BF_ROUNDS       16
42
43 typedef struct bf_key_st {
44     BF_LONG P[BF_ROUNDS + 2];
45     BF_LONG S[4 * 256];
46 } BF_KEY;
47
48 # endif /* OPENSSL_NO_DEPRECATED_3_0 */
49
50 DEPRECATEDIN_3_0(void BF_set_key(BF_KEY *key, int len,
51                                  const unsigned char *data))
52
53 DEPRECATEDIN_3_0(void BF_encrypt(BF_LONG *data, const BF_KEY *key))
54 DEPRECATEDIN_3_0(void BF_decrypt(BF_LONG *data, const BF_KEY *key))
55
56 DEPRECATEDIN_3_0(void BF_ecb_encrypt(const unsigned char *in,
57                                      unsigned char *out, const BF_KEY *key,
58                                      int enc))
59 DEPRECATEDIN_3_0(void BF_cbc_encrypt(const unsigned char *in,
60                                      unsigned char *out, long length,
61                                      const BF_KEY *schedule,
62                                      unsigned char *ivec, int enc))
63 DEPRECATEDIN_3_0(void BF_cfb64_encrypt(const unsigned char *in,
64                                        unsigned char *out,
65                                        long length, const BF_KEY *schedule,
66                                        unsigned char *ivec, int *num, int enc))
67 DEPRECATEDIN_3_0(void BF_ofb64_encrypt(const unsigned char *in,
68                                        unsigned char *out,
69                                        long length, const BF_KEY *schedule,
70                                        unsigned char *ivec, int *num))
71 DEPRECATEDIN_3_0(const char *BF_options(void))
72
73 # ifdef  __cplusplus
74 }
75 # endif
76 # endif
77
78 #endif