
计算机及网络安全
文章平均质量分 96
弦苦
时间从指尖溜过,硬盘在唱歌。
展开
-
计算机中有符号数的表示
1. 二进制数制(十进制、二进制、位模式)2. 无符号数的编码、有符号数的编码(原码,反码,补码)3. 扩展一个数字的位表示以及有符号数和无符号数之间的转换原创 2023-02-17 22:22:31 · 3092 阅读 · 3 评论 -
潜伏的敌人
一种新蠕虫感染了数百万台电脑,它的创造者使用了最先进的加密技术,难住了世界最优秀的网络安全专家。没有人知道病毒的主人想让它干什么,也没有人知道该如何阻止它。原创 2010-07-03 21:14:00 · 2387 阅读 · 0 评论 -
数字签名和数字证书
数字签名是什么?转载 2013-11-15 20:26:47 · 4606 阅读 · 1 评论 -
TLS Handshake Flow(extracts from RFCs)
AbstractThe TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping(窃听), tampe原创 2017-06-03 16:12:29 · 1521 阅读 · 0 评论 -
SSO with Kerberos
SSO(Single Sign On)是在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的业务子系统。 Kerberos 协议主要用于计算机网络的身份鉴别(Authentication),其特点是用户只需输入一次身份验证信息就可以凭借此验证获得的票据(ticket-granting ticket)访问多个服务,即实现了 SSO。翻译 2017-06-20 07:55:17 · 4287 阅读 · 1 评论 -
HTTPs握手流程抓包解析
TLS Handshake Flow:以下是访问 https://github.com 的 wireshark 抓包截图:C->S:Client Hello S->C:Server Hello S->C:Certificate, Server Key Exchange, Server Hello Done C->S:Client Key Change C->S:Change Cip原创 2017-06-03 17:38:21 · 16928 阅读 · 1 评论 -
TLSPARAMS - Cipher Suites
In SSL, the key exchange, symmetric encryption and MAC algorithm are all grouped together into a single aggregate notion called a cipher suite.原创 2017-06-03 16:25:26 · 3242 阅读 · 0 评论 -
TLS握手协商流程解析
1.Hello 协商加密套件与密码套件2.客户端基于 Certificate 和 Server Key Exchange 计算对称密钥3.服务端基于 Client Key Exchange 计算对称密钥4.HTTP over TLS(HTTPs)原创 2017-06-03 18:07:43 · 13806 阅读 · 0 评论