码迷,mamicode.com
首页 >  
搜索关键字:secure    ( 2824个结果
nginx搭建https服务器
HTTPS简介 HTTPS(Hypertext Transfer Protocol over Secure Socket Layer),是以安全为目标的HTTP通道,简单来讲就是HTTP的安全版。即HTTP下加入SSL层,HTTPS的安全基础是SSL,因此加密的详细内容就需要SSL。 它是一个URI scheme(抽象标识符体系),句法类同http:体系,用于安全的http数据传输。https...
分类:Web程序   时间:2016-04-13 13:22:47    阅读次数:323
rsync Backups for Windows
rsync.net provides cloud storage for offsite backups. If you run Windows systems, you can point them to us to secure your data. Our cloud storage is b ...
分类:Windows程序   时间:2016-04-11 20:25:37    阅读次数:361
Secure CRT修改文件夹的颜色
secureCRT有一个很大的问题是,如果设置Emulation Terminal 为Linux模式,则ls的时候,目录的蓝色跟背景的黑色非常接近,很难看清楚,修改办法 option->Global options –> Terminal->Apperance->ANSI Color , Bold ...
分类:其他好文   时间:2016-04-11 11:59:29    阅读次数:142
广义表
#define_CRT_SECURE_NO_WARNINGS1#include<iostream>#include<assert.h>usingnamespacestd;enumNODETYPE{HEAD,VALUE,SUB};structGeneralizedNode{NODETYPE_type;GeneralizedNode*_next;union{char_value;GeneralizedNode*_sublist;};GeneralizedNode(NODETYPEtype=..
分类:其他好文   时间:2016-04-10 19:35:25    阅读次数:174
不使用中间变量交换两个数. 求平均数考虑溢出
#define_CRT_SECURE_NO_WARNINGS1#include<stdio.h>#include<stdlib.h>//不使用中间变量交换两个数的值voidexchange_num(int*a,int*b){①*a=*a+*b;//适用范围广*b=*a-*b;*a=*a-*b;②*a=(*a)*(*b);*b=(*a)/(*b);*a=(*a)/(*b);//当两个数有一个0或者都为0时就不再适..
分类:其他好文   时间:2016-04-10 01:30:48    阅读次数:222
使用nodemailer模块发送邮件
var nodemailer=require('nodemailer'); var smtpTransport = nodemailer.createTransport({ host: 'smtp.qq.com',//qq邮箱的发邮件服务器 port: 465, secure: true, // u ...
分类:其他好文   时间:2016-04-09 18:56:19    阅读次数:150
IOS开发之—— 各种加密数据的使用
基本的单向加密算法: BASE64 严格地说,属于编码格式,而非加密算法 MD5(Message Digest algorithm 5,信息摘要算法)SHA(Secure Hash Algorithm,安全散列算法)HMAC(Hash Message Authentication Code,散列消息 ...
分类:移动开发   时间:2016-04-08 14:48:46    阅读次数:152
大蛇程序
大蛇程序#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#defineM10voidmain(){ inta[M][M]={0}; intdata=1; intN=0; scanf("%d",&N); printf("Nis%d\n",N); for(inti=0,j=0,k=0;k<(N+1)/2;k++) { while(j<N-k)//控制层数 { a..
分类:其他好文   时间:2016-04-06 15:32:59    阅读次数:135
Useful links
Secure ASP.NET Web API using API Key Authentication – HMAC Authentication http://bitoftech.net/2014/12/15/secure-asp-net-web-api-using-api-key-authent ...
分类:其他好文   时间:2016-04-06 11:29:04    阅读次数:111
windows下生成github ssh key详解
一、引子: 什么是ssh:ssh是Secure Shell(安全外壳协议)的缩写,建立在应用层和传输层基础上的安全协议。为了便于访问github,要生成ssh公钥,这样就不用每一次访问github都要输入用户名和密码。 二、生成条件: 请在github上先注册账号,本地安装git。 三、生成步骤: 1、本地成功安装了git后,单击鼠标右键,选择Git Bush here,打开git bu...
分类:Windows程序   时间:2016-04-05 17:45:48    阅读次数:257
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!