码迷,mamicode.com
首页 >  
搜索关键字:secure    ( 2824个结果
沃通tomcat jks 安装配置
废话不多说上代码: <Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true" scheme="https" secure="true" ...
分类:其他好文   时间:2016-04-23 14:42:31    阅读次数:111
_CRT_SECURE_NO_WARNINGS
本文摘自csdn沧海一粟的专栏 link:http://blog.csdn.net/xuleilx/article/details/7281499 Warning 1 warning C4996: 'fopen': This function or variable may be unsafe. C ...
分类:其他好文   时间:2016-04-22 11:58:01    阅读次数:117
广义表
广义表是非线性的结构,是线性表的一种扩展,是有n个元素组成有限序列。 广义表的定义是递归的,因为在表的描述中又得到了表,允许表中有表#define_CRT_SECURE_NO_WARNINGS1 #include<iostream> usingnamespacestd; #include<assert.h> enumType { HEAD,//头节点 ..
分类:其他好文   时间:2016-04-22 10:44:06    阅读次数:210
Ubuntu环境下SSH的安装及使用
Ubuntu环境下SSH的安装及使用 SSH是指Secure Shell,是一种安全的传输协议,Ubuntu客户端可以通过SSH访问远程服务器 。SSH的简介和工作机制可参看上篇文章 SSH简介及工作机制。 SSH分客户端openssh-client和openssh-server 如果你只是想登陆别 ...
分类:系统相关   时间:2016-04-21 01:16:14    阅读次数:255
类和对象的简单应用
#define_CRT_SECURE_NO_WARNINGS1#include<iostream>usingnamespacestd;classTime{public: inthour; intminute; intsec;};voidset_time(Time&t)//定义函数set_time,形参t是引用变量{ cin>>t.hour;//输入设定的时间 cin>>t.minute; cin>>t.sec;}voi..
分类:其他好文   时间:2016-04-20 23:58:30    阅读次数:298
稀疏矩阵的压缩存储
压缩存储值存储极少数的有效数据。使用{row,col,value}三元组存储每一个有效数据,三元组按原矩阵中的位置,以行优先级先后顺序依次存放。 #define_CRT_SECURE_NO_WARNINGS1 #include<vector> #include<iostream> usingnamespacestd; //三元组的定义 template<..
分类:其他好文   时间:2016-04-19 00:33:44    阅读次数:176
java之Secure hash functions
java之Secure hash functions A secure hash function will generate a large number, called the hash value, when given a document of some sort. This document can be of almost any type. We will be usi...
分类:编程语言   时间:2016-04-17 23:07:50    阅读次数:336
双向循环单链表
//函数声明:#include"cirtwowaylinklist.h" #define_CRT_SECURE_NO_WARNINGS1 #include<stdio.h> #include<stdlib.h> typedefintElemType; typedefstructCirDulNode { structCirDulNode*prior; ElemTypedata; structCirDulNode*next; }DulNode; voidjudgem..
分类:其他好文   时间:2016-04-16 19:42:48    阅读次数:237
java之Secure communication terminology
java之Secure communication terminology There are several terms that are used when working with secure communications. These include the following: Authentication: This is the process of verifyi...
分类:编程语言   时间:2016-04-16 12:35:17    阅读次数:180
双向单链表
//函数声明部分:#include"twowaylinklist.h" #define_CRT_SECURE_NO_WARNINGS1 #include<stdio.h> #include<stdlib.h> typedefintElemType; typedefstructDulNode { structDulNode*prior; ElemTypedata; structDulNode*next; }DulNode; voidjudgement_NULL(D..
分类:其他好文   时间:2016-04-15 23:12:35    阅读次数:258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!