基本的单向加密算法: BASE64 严格地说,属于编码格式,而非加密算法 MD5(Message Digest algorithm 5,信息摘要算法)SHA(Secure Hash Algorithm,安全散列算法)HMAC(Hash Message Authentication Code,散列消息 ...
分类:
移动开发 时间:
2016-04-08 14:48:46
阅读次数:
152
作为 OpenStack 的基础支持服务,Keystone 做下面这几件事情: 管理用户及其权限 维护 OpenStack Services 的 Endpoint Authentication(认证)和 Authorization(鉴权) 学习 Keystone,得理解下面这些概念: User Us ...
分类:
其他好文 时间:
2016-04-08 07:46:22
阅读次数:
208
配置文件内容:input{
stdin{
}
}
output{
email{
port=>"25"
address=>"smtp.qq.com"
username=>"1820034099@qq.com"
password=>"*********"
authentication=>"plain"
use_tls=>false
from=>"1820034099@qq.com"
subject=>"Warning:youhaveanerror!"
..
分类:
其他好文 时间:
2016-04-07 18:48:02
阅读次数:
588
1.常见攻击手段 2.密码学基础 2.1 HASH 2.2 随机数 2.3 对称加密 2.4 非对称加密 3.身份认证方案 3.1HTTP基本认证 3.1 HMAC 3.2 HTTP摘要认证(Digest access authentication, rfc2069) 3.3 https/tls 3 ...
分类:
其他好文 时间:
2016-04-07 01:07:53
阅读次数:
265
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
关键性配置:<httpRuntime targetFramework="4.0" /> <authentication mode="Forms"> <forms domain="itanyx.com" name="itanyx.authcookie" protection="None" /> </a ...
分类:
其他好文 时间:
2016-04-04 01:33:10
阅读次数:
242
authentication-mode 常见的配置参数有三种user-interface vty 0 14 1、authentication-mode aaa或authentication-mode scheme创建本地用户并启用AAA验证。 2、authentication-mode passwo ...
分类:
其他好文 时间:
2016-04-02 18:56:51
阅读次数:
405
分类:
1、单向加密算法
单向加密是非可逆加密,就是不可解密的加密方法。
BASE64 严格地说,属于编码格式,而非加密算法
MD5(Message Digest algorithm 5,信息摘要算法)
SHA(Secure Hash Algorithm,安全散列算法)
HMAC(Hash Message Authentication Code,散列消息鉴别码)...
分类:
编程语言 时间:
2016-04-01 18:09:55
阅读次数:
190
日常开发的绝大多数系统中,都涉及到管理用户的登录和授权问题。登录功能(Authentication),针对于所有用户都开放;而授权(Authorization),则对于某种用户角色才开放。 在asp.net mvc中,微软虽然已经帮助开发者构建了ASP.NET Identity这样强大的验证授权框架 ...
分类:
Web程序 时间:
2016-03-31 00:13:23
阅读次数:
147
当某个页面需要认证才能进行访问时,可以发送一个包含 WWW-Authenticate 首部(用来标识认证安全域)的响应,并且响应的 HTTP 状态码为 401; 当浏览器看到一个 401 首部时,会弹出一个对话框,要求输入用户名和密码。如果用户输入了用户名和密码,那么用户输入的用户名和密码将会分别保 ...
分类:
Web程序 时间:
2016-03-29 00:49:23
阅读次数:
390