码迷,mamicode.com
首页 >  
搜索关键字:secure    ( 2824个结果
Linux开发环境搭建与使用——Linux必备软件之SSH
SSH 为 Secure Shell 的缩写,由 IETF 的网络工作小组(Network Working Group)所制定;SSH 为建立在应用层和传输层基础上的安全协议。 SSH 是目前较可靠,专为远程登录会话和其他网络服务提供安全性的协议。常用于远程登录,以及用户之间进行资料拷贝。 利用 SSH 协议可以有效防止远程管理过程中的信息泄露问题。SSH 最初是 UNIX 系...
分类:系统相关   时间:2015-03-16 17:47:53    阅读次数:206
例题1.21 子序列 UVa1121
1.题目描述:点击打开链接 2.解题思路:本题是典型的二分搜索题,二分答案后验证是否满足和大于等于S即可。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include #incl...
分类:其他好文   时间:2015-03-15 18:28:24    阅读次数:138
例题1.14 填充正方形 UVa11520
1.题目描述:点击打开链接 2.解题思路:本题要求字典序最小,由于n的范围比较小,直接尝试按照字典序填写每个格子即可。 3.代码: #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include #include #include #include #include...
分类:其他好文   时间:2015-03-14 09:45:14    阅读次数:133
VC++网络安全编程范例(11)-SSL高级加密网络通信(转)
SSL(Secure Sockets Layer 安全套接层),及其继任者传输层安全(Transport Layer Security,TLS)是为网络通信提供安全及数据完整性的一种安全协议。TLS与SSL在传输层对网络连接进行加密。 SSL (Secure Socket Layer) 为Ne...
分类:编程语言   时间:2015-03-13 20:25:04    阅读次数:174
二.Sehll 编程基础
1.#! shell脚本的起始符号;指明解释器;如 #!/bin/bash 指明解释器的位置;2.三种登录Shell的方法 X Window SSH Secure Shell Putty3.命令(command):是Shell脚本的最基本元素,命令通常由命令名称、选项和参数三部分组成,三部分之间用空...
分类:其他好文   时间:2015-03-12 13:05:49    阅读次数:111
The openssl extension is missing--composer install
安装过程中报错:The openssl extension is missing, which means that secure HTTPS transfers are impossible. If possible you should enable it or recompile php with --with-openssl 解决方法:找到path ph...
分类:其他好文   时间:2015-03-11 13:12:12    阅读次数:250
2.为ADF应用添加安全性认证
1.打开ADF应用之后,选择Application==>Secure==>Configure ADF Security2.在弹出框中选择ADF Authentication,一直Next知道完成。3.编译后运行效果如下,需要用户输入用户名和密码。说明: 1.其中的用户名和密码是在对应的服务器的c.....
分类:其他好文   时间:2015-03-11 12:38:41    阅读次数:130
一起学android之如何获取Android设备的唯一识别码笔记(21)
因为需要在项目中需要获得一个稳定、可靠的设备唯一识别码,因此搜了一些网上的资料。今天我们将介绍几种方式。        1. DEVICE_ID  假设我们确实需要用到真实设备的标识,可能就需要用到DEVICE_ID。在以前,我们的Android设备是手机,这个 DEVICE_ID可以同通过TelephonyManager.getDeviceId()获取,它根据不同的手机...
分类:移动开发   时间:2015-03-11 10:57:33    阅读次数:194
关于二进制文件fread、fwrite函数使用读写
环境:vs2013 语言:C语言 时间:2015年3月10日 #define _CRT_SECURE_NO_WARNINGS #include #include #define FILENAME "d:/studentInfo" #define COUNT 5 typedef struct { char name[10]; short Math; short Chinese;...
分类:其他好文   时间:2015-03-10 23:15:44    阅读次数:206
hdu 1018 Big Number 两种方法 log方法(300+ms)+斯特林公式(0+ms)
Problem Description In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encryption, etc. In this problem you are given a number, you have to determine the number of digit...
分类:其他好文   时间:2015-03-10 19:30:04    阅读次数:150
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!