02 2022 档案

摘要:class CProcessItem; typedef list<CProcessItem*> ProcessList; 阅读全文

posted @ 2022-02-23 06:59 lydstory 阅读(37) 评论(0) 推荐(0)

摘要:seal算法 经典密码算法 阅读全文

posted @ 2022-02-23 06:05 lydstory 阅读(335) 评论(0) 推荐(0)

摘要:后台同事给的事.pem和.key文件,项目中要用cer证书,所以要转一下 pem证书转cer证书 命令: 1.openssl pkcs12 -export -out cacert.p12 -in cacert.pem -inkey cacert.key 先转p12 2.openssl pkcs12 阅读全文

posted @ 2022-02-23 05:47 lydstory 阅读(294) 评论(0) 推荐(0)

摘要:简介:FCI(File Compression Interface)和FDI(File Decompression Interface)是由微软提供的用于压缩和解压缩的开发包。最大的好处是在WinNT、Win2000、WinXP下系统都提供了相应的API接口。所以,我们的程序不需要额外的压缩库。本文 阅读全文

posted @ 2022-02-17 07:08 lydstory 阅读(502) 评论(0) 推荐(0)

摘要:一、概述 目前,存储介质作为企业核心商业机密和敏感信息的载体,实现对它们安全、有效的管理是保证企业信息安全的重要手段。移动存储介质的使用灵 活、方便使它在企业信息化的过程中迅速得到普及,越来越多的敏感信息、秘密数据和档案资料被存贮在移动介质里,大量的秘密文件和资料变为磁性介质,光学介质,存贮在无保护 阅读全文

posted @ 2022-02-17 06:58 lydstory 阅读(483) 评论(0) 推荐(0)

摘要:https://www.cnblogs.com/zhehan54/p/4646904.html 阅读全文

posted @ 2022-02-17 06:33 lydstory 阅读(28) 评论(0) 推荐(0)

摘要:虚拟可信磁盘 虚拟可信磁盘 虚拟可信磁盘 阅读全文

posted @ 2022-02-17 06:21 lydstory 阅读(40) 评论(0) 推荐(0)

摘要:struct sbuffer { struct sbuffer* next; int sz; char* ptr; char data[0]; }; int main() { cout<<sizeof(sbuffer)<<endl; return 0; } 24 阅读全文

posted @ 2022-02-17 05:18 lydstory 阅读(34) 评论(0) 推荐(0)

摘要:#include <iostream> using namespace std; #include <stdlib.h> #include <stdio.h> #include <stdio.h> #include <memory.h> #include <malloc.h> struct _pag 阅读全文

posted @ 2022-02-17 05:13 lydstory 阅读(64) 评论(0) 推荐(0)

摘要:#include <stdlib.h>#include <stdio.h> struct _page { struct _page* next; char begin[0];}; int main(){ cout << sizeof(_page) << endl; return 0;} 输出8 ch 阅读全文

posted @ 2022-02-17 05:03 lydstory 阅读(36) 评论(0) 推荐(0)

摘要:#include <iostream> using namespace std; #include <string.h> #include <stdlib.h> #define ARGS_BUF 1024 #define ARGS_MAX 10 struct args { char buf[ARGS 阅读全文

posted @ 2022-02-17 04:19 lydstory 阅读(71) 评论(0) 推荐(0)

摘要:https://ithub.com/lvshaco/shaco_first 阅读全文

posted @ 2022-02-17 03:53 lydstory 阅读(40) 评论(0) 推荐(0)

摘要:https://www.easemob.com/ 阅读全文

posted @ 2022-02-17 01:48 lydstory 阅读(35) 评论(0) 推荐(0)

摘要:图搜天下(北京)科技有限公司 java 阅读全文

posted @ 2022-02-17 01:28 lydstory 阅读(62) 评论(0) 推荐(0)

摘要:图像传感器 图像传感器 阅读全文

posted @ 2022-02-16 05:32 lydstory 阅读(32) 评论(0) 推荐(0)

摘要:http://www.infotmic.com.cn/index.php/zh/jrwm/ 阅读全文

posted @ 2022-02-16 05:01 lydstory 阅读(23) 评论(0) 推荐(0)

摘要:lame mp3解码库 speex 音频解码库 阅读全文

posted @ 2022-02-16 04:48 lydstory 阅读(31) 评论(0) 推荐(0)

摘要:aacEncode aac编解码 阅读全文

posted @ 2022-02-16 04:39 lydstory 阅读(26) 评论(0) 推荐(0)

摘要:#include <iostream> using namespace std; #include <stdio.h> #include <time.h> #include <sys/time.h> typedef struct { int id; char *ptr; } OSA_IpcShmHn 阅读全文

posted @ 2022-02-16 04:32 lydstory 阅读(629) 评论(0) 推荐(0)

摘要:msgrcv msgsnd ipc 消息队列通信 阅读全文

posted @ 2022-02-16 03:36 lydstory 阅读(29) 评论(0) 推荐(0)

摘要:snprintf(commandBuf, COMMAND_BUF_MAX_SIZE, "echo %d > /sys/class/gpio/export ", RESETGPIO); ret = system(commandBuf); 阅读全文

posted @ 2022-02-16 02:55 lydstory 阅读(125) 评论(0) 推荐(0)

摘要:static int ReadGpioValue(int r) { char commandBuf[COMMAND_BUF_MAX_SIZE] = {0}; FILE *fp = NULL; int ret = -1, value = -1; snprintf(commandBuf, COMMAND 阅读全文

posted @ 2022-02-16 02:35 lydstory 阅读(53) 评论(0) 推荐(0)

摘要:一. Uboot模式下通过串口烧写镜像到spi flash1. 安装并打开tftp工具,如tftp322. 将需要烧录的文件放在tftp目录;3. 重启设备,进入u-boot模式4. 设置tftp服务器IPsetenv serverip 192.168.x.xxx5. 设置主板ipsetenv ip 阅读全文

posted @ 2022-02-16 01:07 lydstory 阅读(1533) 评论(0) 推荐(0)

摘要:V4L2是Video for linux2的简称,为linux中关于视频设备的内核驱动。在Linux中,视频设备是设备文件,可以像访问普通文件一样对其进行读写,摄像头在/dev/video*下,如果只有一个视频设备,通常为/dev/video0。 V4L2在设计时,是要支持很多广泛的设备的,它们之中 阅读全文

posted @ 2022-02-15 05:58 lydstory 阅读(147) 评论(0) 推荐(0)

摘要:用FPGA实现H.264/AVC硬件编解码器的构想 阅读全文

posted @ 2022-02-15 05:51 lydstory 阅读(51) 评论(0) 推荐(0)

摘要:SPIflash MiniGUI 阅读全文

posted @ 2022-02-15 05:42 lydstory 阅读(21) 评论(0) 推荐(0)

摘要:G.711aLaw 网络摄像机 音频编码 g.711alaw 阅读全文

posted @ 2022-02-15 05:39 lydstory 阅读(49) 评论(0) 推荐(0)

摘要:TUTK p2p穿透的使用介绍 阅读全文

posted @ 2022-02-15 05:35 lydstory 阅读(354) 评论(0) 推荐(0)

摘要:infotmic.com.cn IPC摄像头 阅读全文

posted @ 2022-02-15 05:04 lydstory 阅读(24) 评论(0) 推荐(0)

摘要:adbshell libshell socket ?? 做的好????????????? 阅读全文

posted @ 2022-02-02 12:55 lydstory 阅读(19) 评论(0) 推荐(0)

摘要:ICG介绍 北京爱赛立技术有限公司(英文缩写ICG)是位于海淀区的国家高新技术企业,公司创立于2007年,并于2009年获得海外风险投资。 公司定位于高性能网络通信设备的研发生产,主要从事基于RISC多核CPU的高性能通信处理平台的研发、生产、销售以及技术服务,产品可广泛应用于防火墙、UTM、IDS 阅读全文

posted @ 2022-02-02 12:43 lydstory 阅读(830) 评论(0) 推荐(0)

摘要:https://www.gizwits.com/app 阅读全文

posted @ 2022-02-02 12:22 lydstory 阅读(38) 评论(0) 推荐(0)

摘要:http://mp3.hot1949.com/st-music/list-id-1-13.html 阅读全文

posted @ 2022-02-01 04:45 lydstory 阅读(133) 评论(0) 推荐(0)

导航