Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/openssl
File: rc4.h
/*
[0] Fix | Delete
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
[1] Fix | Delete
*
[2] Fix | Delete
* Licensed under the OpenSSL license (the "License"). You may not use
[3] Fix | Delete
* this file except in compliance with the License. You can obtain a copy
[4] Fix | Delete
* in the file LICENSE in the source distribution or at
[5] Fix | Delete
* https://www.openssl.org/source/license.html
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
#ifndef HEADER_RC4_H
[9] Fix | Delete
# define HEADER_RC4_H
[10] Fix | Delete
[11] Fix | Delete
# include <openssl/opensslconf.h>
[12] Fix | Delete
[13] Fix | Delete
# ifndef OPENSSL_NO_RC4
[14] Fix | Delete
# include <stddef.h>
[15] Fix | Delete
#ifdef __cplusplus
[16] Fix | Delete
extern "C" {
[17] Fix | Delete
#endif
[18] Fix | Delete
[19] Fix | Delete
typedef struct rc4_key_st {
[20] Fix | Delete
RC4_INT x, y;
[21] Fix | Delete
RC4_INT data[256];
[22] Fix | Delete
} RC4_KEY;
[23] Fix | Delete
[24] Fix | Delete
const char *RC4_options(void);
[25] Fix | Delete
void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
[26] Fix | Delete
void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
[27] Fix | Delete
unsigned char *outdata);
[28] Fix | Delete
[29] Fix | Delete
# ifdef __cplusplus
[30] Fix | Delete
}
[31] Fix | Delete
# endif
[32] Fix | Delete
# endif
[33] Fix | Delete
[34] Fix | Delete
#endif
[35] Fix | Delete
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function