You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
410 B
15 lines
410 B
#pragma once
|
|
|
|
#include <sys/socket.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
unsigned char encrypt_table[256];
|
|
unsigned char decrypt_table[256];
|
|
void get_table(const unsigned char* key);
|
|
void encrypt(char *buf, int len);
|
|
void decrypt(char *buf, int len);
|
|
int send_encrypt(int sock, char *buf, int len, int flags);
|
|
int recv_decrypt(int sock, char *buf, int len, int flags);
|
|
|