1
0
mirror of https://github.com/fumiama/android-base16384.git synced 2026-06-06 02:30:30 +08:00
Files
android-base16384/app/src/main/cpp/base14/32/base1432le.h
fumiama 311f836731 v3.2.1
1. 修复32位加密错误
2. 优化性能
2021-10-29 22:56:36 +08:00

14 lines
287 B
C

//base1432le.h
//fumiama 20210408
#include <stdint.h>
#define B14BUFSIZ 1024*1024 // 1M
struct LENDAT {
uint8_t* data;
int32_t len;
};
typedef struct LENDAT LENDAT;
LENDAT* encode(const uint8_t* data, const int32_t len);
LENDAT* decode(const uint8_t* data, const int32_t len);