check_chain_extensions(): Add check that Basic Constraints of CA cert are marked...
[openssl.git] / include / openssl / rc4.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_RC4_H
11 # define OPENSSL_RC4_H
12 # pragma once
13
14 # include <openssl/macros.h>
15 # ifndef OPENSSL_NO_DEPRECATED_3_0
16 #  define HEADER_RC4_H
17 # endif
18
19 # include <openssl/opensslconf.h>
20
21 # ifndef OPENSSL_NO_RC4
22 #  include <stddef.h>
23 #  ifdef  __cplusplus
24 extern "C" {
25 #  endif
26
27 #  ifndef OPENSSL_NO_DEPRECATED_3_0
28 typedef struct rc4_key_st {
29     RC4_INT x, y;
30     RC4_INT data[256];
31 } RC4_KEY;
32 #  endif
33
34 DEPRECATEDIN_3_0(const char *RC4_options(void))
35 DEPRECATEDIN_3_0(void RC4_set_key(RC4_KEY *key, int len,
36                                   const unsigned char *data))
37 DEPRECATEDIN_3_0(void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
38                           unsigned char *outdata))
39
40 #  ifdef  __cplusplus
41 }
42 #  endif
43 # endif
44
45 #endif