openssl-prebuild/linux_amd64/include/openssl/rc4.h

37 lines
825 B
C
Raw Permalink Normal View History

2020-03-02 11:50:34 -05:00
/*
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
*
2020-03-02 12:19:21 -05:00
* Licensed under the OpenSSL license (the "License"). You may not use
2020-03-02 11:50:34 -05:00
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
2020-03-02 12:19:21 -05:00
#ifndef HEADER_RC4_H
# define HEADER_RC4_H
2020-03-02 11:50:34 -05:00
# include <openssl/opensslconf.h>
# ifndef OPENSSL_NO_RC4
2020-03-02 12:19:21 -05:00
# include <stddef.h>
#ifdef __cplusplus
2020-03-02 11:50:34 -05:00
extern "C" {
2020-03-02 12:19:21 -05:00
#endif
2020-03-02 11:50:34 -05:00
typedef struct rc4_key_st {
RC4_INT x, y;
RC4_INT data[256];
} RC4_KEY;
2020-03-02 12:19:21 -05:00
const char *RC4_options(void);
void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
unsigned char *outdata);
2020-03-02 11:50:34 -05:00
2020-03-02 12:19:21 -05:00
# ifdef __cplusplus
2020-03-02 11:50:34 -05:00
}
2020-03-02 12:19:21 -05:00
# endif
2020-03-02 11:50:34 -05:00
# endif
#endif