mirror of
https://github.com/wangyu-/udp2raw.git
synced 2025-10-14 09:55:33 +08:00
change file name
This commit is contained in:
11
encrypt.h
Executable file
11
encrypt.h
Executable file
@@ -0,0 +1,11 @@
|
||||
#ifndef _ENCRYPTION_H_
|
||||
#define _ENCRYPTION_H_
|
||||
#include <aes.h>
|
||||
#include <md5.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
int my_encrypt(uint8_t *data,uint8_t *output,int &len,uint8_t * key);
|
||||
int my_decrypt(uint8_t *data,uint8_t *output,int &len,uint8_t * key);
|
||||
#endif
|
Reference in New Issue
Block a user