1 Star 3 Fork 1

thinkcmf / php-beast

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
des_algo_handler.c 1.99 KB
一键复制 编辑 原始数据 按行查看 历史
maben 提交于 2017-03-22 16:44 . add shm
/**
* DES encrypt algorithms handler module for Beast
* @author: liexusong
*/
#include <stdlib.h>
#include <string.h>
#include "beast_log.h"
#include "beast_module.h"
#include "des_algo_lib.c"
static char key[8] = {
0x01, 0x1f, 0x01, 0x1f,
0x01, 0x0e, 0x01, 0x0e,
};
int des_encrypt_handler(char *inbuf, int len,
char **outbuf, int *outlen)
{
int blocks, i, fixcnt;
char input[8], output[8];
char *out;
int retlen;
if ((len % 8) == 0) {
fixcnt = 0;
blocks = len / 8;
} else {
fixcnt = len % 8;
blocks = len / 8 + 1;
}
retlen = blocks * 8;
out = malloc(retlen);
if (!out) {
beast_write_log(beast_log_error,
"Out of memory when allocate `%d' size by encrypt(DES)", retlen);
return -1;
}
for (i = 0; i < blocks; i++) {
memset(input, 0, 8);
/* The last block not enough 8 bytes, fix me */
if (i + 1 == blocks && fixcnt > 0) {
memcpy(input, &inbuf[i*8], fixcnt);
} else {
memcpy(input, &inbuf[i*8], 8);
}
DES_encipher(input, output, key);
memcpy(&out[i * 8], output, 8);
}
*outbuf = out;
*outlen = retlen;
return 0;
}
int des_decrypt_handler(char *inbuf, int len,
char **outbuf, int *outlen)
{
int blocks, retlen, i;
char *out;
if (len % 8 == 0) {
blocks = len / 8;
} else {
blocks = len / 8 + 1;
}
retlen = blocks * 8;
out = malloc(retlen);
if (!out) {
beast_write_log(beast_log_error,
"Out of memory when allocate `%d' size by decrypt(DES)", retlen);
return -1;
}
for (i = 0; i < blocks; i++) {
DES_decipher(&inbuf[i*8], &out[i*8], key);
}
*outbuf = out;
*outlen = retlen;
return 0;
}
void des_free_handler(void *ptr)
{
if (ptr) {
free(ptr);
}
}
struct beast_ops des_handler_ops = {
"des-algo",
des_encrypt_handler,
des_decrypt_handler,
des_free_handler,
NULL
};
1
https://gitee.com/thinkcmf/php-beast.git
git@gitee.com:thinkcmf/php-beast.git
thinkcmf
php-beast
php-beast
master

搜索帮助