Chinaunix首页 | 论坛 | 博客
  • 博客访问: 440091
  • 博文数量: 113
  • 博客积分: 446
  • 博客等级: 下士
  • 技术积分: 1229
  • 用 户 组: 普通用户
  • 注册时间: 2012-12-09 16:01
个人简介

Let's go!!!!!

文章分类

全部博文(113)

文章存档

2019年(5)

2018年(4)

2017年(9)

2016年(5)

2015年(39)

2014年(6)

2013年(28)

2012年(17)

发布时间:2015-07-01 20:17:01

<p><span>&nbsp;Linux</span><span style="font-family:宋体;">线程</span><span>-</span><span style="font-family:宋体;">互斥锁</span><span>pthread_mutex_t</span></p><p><span>&nbsp;</span></p><p><span>&nbsp; &nbsp; &nbsp;</span><span style="font-family:宋体;">在线程实际运行过程中,我们经常需要.........【阅读全文】

阅读(1270) | 评论(0) | 转发(0)

发布时间:2015-03-08 22:24:55

#include<stdio.h>#include<stdlib.h>#include<malloc.h>#include<string.h>#define BUCKETS 200typedef struct ListElmt_{   char data[15];   struct ListElmt_ *next;}ListElmt;typedef struct List_{   int size;   ListElmt *head;}List;typedef struct CHT.........【阅读全文】

阅读(948) | 评论(0) | 转发(0)

发布时间:2015-03-08 22:23:57

#include<stdio.h>#include<malloc.h>#include<stdlib.h>#define True 1#define False 0#define error do{printf("Init set error!");exit(1);}while(0);typedef int ElemType;typedef int Status;typedef struct NODE{   ElemType data;   struct NODE *next;}Node;typedef struct LI.........【阅读全文】

阅读(1022) | 评论(0) | 转发(0)

发布时间:2015-02-08 16:55:11

openssl enc -ciphername [-in filename] [-outfilename] [-pass arg] [-e]-chipername选项:加密算法, -in选项:输入文件,对于加密来说,输入的应该是明文文件;对于解密来说,输入的应该是加密的文件。该选项后面直接跟文件名。-pass选项:选择输入口令的方式,输入源可以是标准输入设备,命令行输入,文件、.........【阅读全文】

阅读(4217) | 评论(0) | 转发(0)

发布时间:2015-02-08 16:03:27

OpenSSL is a program and library that supports many different cryptographic operations, including:Symmetric key encryptionPublic/private key pair generationPublic key encryptionHash functionsCertificate creationDigital signaturesRandom number genera.........【阅读全文】

阅读(899) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册