資訊安全技術主要包括:
這里因為之前搞到了師兄給的一百多頁的密碼學基礎,所以就先pick數字簽名來講,(小聲嗶嗶:按我的性格肯定是想all in的,但是看一個密碼學能講的都有很多那就先講數字簽名再加億點點細節吧)
數字簽名技術
數字簽名(又稱公鑰數字簽名、電子簽章)是一種類似寫在紙上的普通的物理簽名,但是使用了公鑰加密領域的技術實作 ,用于鑒別數字資訊的方法,一套數字簽名通常定義兩種互補的運算,一個用于簽名,另一個用于驗證, 數字簽名,就是只有資訊的發送者才能產生的別人無法偽造的一段數字串 ,這段數字串同時也是對資訊的發送者發送資訊真實性的一個有效證明, 數字簽名是非對稱密鑰加密技術與數字摘要技術的應用 , 數字簽名技術是密碼學基礎 的一部分
能與被簽的檔案在物理上不可分割 簽名者不能否認自己的簽名 簽名不能被偽造 容易被驗證
能與所簽檔案“系結” 簽名者不能否認自己的簽名 簽名不能被偽造 容易被驗證
數字簽名的特性
對普通數字簽名,任何人可用簽名者公鑰驗證簽名的有效性
數字簽名的兩種方法
(a) 基于RSA的數字簽名
初始化: m:簽名的訊息 簽名者的私鑰:d;公鑰:(e,n) 簽名: 計算m的哈希值H(m). 簽名值s=(H(m))^d mod n 驗證: 計算H1=s^e mod n 判斷H1=H(m)是否成立
(b) DSS處理
DSS數字簽名標準:
DSS(Digital signature standard) NIST提出,1994年12月被正式采用為美國聯邦資訊處理標準 數字簽名演算法(Digital signature algorithm, DSA )
DSS特點:
只能用于簽名 不能用于加密,也不能用于密鑰分配
DSA是ELGamal簽名方案的一個變形,所有有關ELGamal簽名方案的一些攻擊方法也可能對DSA有效 對DSA持反對意見的人懷疑 DSA的安全性,認為DSA的密鑰長度太短
三種演算法的比較
演算法 加/解密 數字簽名 密鑰協商 RSA 是 是 是 Dieffie-Hellman 否 否 是 DSA 否 是 否
加億點點細節(擴展內容,,跑偏了)
非對稱密碼演算法
非對稱加密演算法是一種密鑰的保密方法,非對稱加密演算法需要兩個密鑰:公開密鑰(publickey:簡稱公鑰)和私有密鑰(privatekey:簡稱私鑰 ),公鑰與私鑰是一對,如果用公鑰對資料進行加密,只有用對應的私鑰才能解密,因為加密和解密使用的是兩個不同的密鑰,所以這種演算法叫作非對稱加密演算法,
在一個演算法中實作簽名和加密 私鑰 : 簽名和解密 公鑰 : 簽名檢驗和加密 RSA演算法是一種非對稱密碼演算法,所謂非對稱,就是指該演算法需要一對密鑰,使用其中一個加密,則需要用另一個才能解密,
無線Modem的實作 對分組交換資料網加密,實作快速Deffie-Hellman密鑰交換 Web服務器的實作 可節省計算時間和帶寬 集成電路卡的實作 ECC無需協處理器即可在標準卡上實作快速、安全的數字簽名,RSA難以實作
安全性能更高(160位等同RSA的1024位) 計算量小,處理速度快 存盤空間占用小 帶寬要求低 應用前景非常好,特別在移動通信、無線設備上的應用,
演算法能講的真的太多遼,一口老血 RSA和ESS安全模長的時間比較 👇
攻破時間 RSA/DSA ECC RSA/ECC MIPS年 密鑰長度 密鑰長度 密鑰長度比 10^4 512 106 5:1 10^8 768 132 6:1 10^11 1024 160 7:1 10^20 2048 210 10:1 10^78 21000 600 35:1
Diffie-Hellman 密鑰協商演算法
公鑰密碼體制的思想
不同于以往的加密技術,公鑰密碼體制是建立在數學函式基礎上的,而不是建立在位方式的操作上的, 與只使用單一密鑰的傳統加密技術相比,它在加解密時,分別使用了兩個不同的密鑰:
用公鑰加密的資訊只能用相應的私鑰解密,反之亦然, 同時,要想由一個密鑰推知另一個密鑰,在計算上是不可能的 , 公鑰加密模型👇
公鑰密碼的重要特性
公鑰密碼的優缺點
解決密鑰傳遞的問題 大大減少密鑰持有量 提供了對稱密碼技術無法或很難提供的服務(數字簽名)
對公鑰密碼的誤解
公鑰密碼演算法比對稱密碼演算法更安全? 任何一種現代密碼演算法的安全性都依賴于密鑰長度、破譯密碼的作業量,從對抗分析角度,沒有一方更優越, 公鑰密碼演算法使得對稱密碼演算法成為了過時技術? 公鑰密碼演算法計算速度較慢,通常用于密鑰管理和數字簽名, 對稱密碼演算法將長期存在, 使用公開密鑰加密,密鑰分配變得非常簡單? 密鑰分配既不簡單,也不有效,
本篇博客講解了數字簽名 ,擴展的說明了公鑰加密、非對稱加密 等與數字簽名技術實作相關內容,其技術應用演算法各不相同,感興趣的可以進行再深入了解,
密碼技術知識體
<style>#mermaid-svg-O4TdJ8RxOP0XDQGi .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .label text{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .node rect,#mermaid-svg-O4TdJ8RxOP0XDQGi .node circle,#mermaid-svg-O4TdJ8RxOP0XDQGi .node ellipse,#mermaid-svg-O4TdJ8RxOP0XDQGi .node polygon,#mermaid-svg-O4TdJ8RxOP0XDQGi .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-O4TdJ8RxOP0XDQGi .node .label{text-align:center;fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .node.clickable{cursor:pointer}#mermaid-svg-O4TdJ8RxOP0XDQGi .arrowheadPath{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-O4TdJ8RxOP0XDQGi .flowchart-link{stroke:#333;fill:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-O4TdJ8RxOP0XDQGi .edgeLabel rect{opacity:0.9}#mermaid-svg-O4TdJ8RxOP0XDQGi .edgeLabel span{color:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-O4TdJ8RxOP0XDQGi .cluster text{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-O4TdJ8RxOP0XDQGi .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-O4TdJ8RxOP0XDQGi text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .actor-line{stroke:grey}#mermaid-svg-O4TdJ8RxOP0XDQGi .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .sequenceNumber{fill:#fff}#mermaid-svg-O4TdJ8RxOP0XDQGi #sequencenumber{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi #crosshead path{fill:#333;stroke:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .messageText{fill:#333;stroke:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-O4TdJ8RxOP0XDQGi .labelText,#mermaid-svg-O4TdJ8RxOP0XDQGi .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .loopText,#mermaid-svg-O4TdJ8RxOP0XDQGi .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-O4TdJ8RxOP0XDQGi .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-O4TdJ8RxOP0XDQGi .noteText,#mermaid-svg-O4TdJ8RxOP0XDQGi .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-O4TdJ8RxOP0XDQGi .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-O4TdJ8RxOP0XDQGi .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-O4TdJ8RxOP0XDQGi .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .section{stroke:none;opacity:0.2}#mermaid-svg-O4TdJ8RxOP0XDQGi .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-O4TdJ8RxOP0XDQGi .section2{fill:#fff400}#mermaid-svg-O4TdJ8RxOP0XDQGi .section1,#mermaid-svg-O4TdJ8RxOP0XDQGi .section3{fill:#fff;opacity:0.2}#mermaid-svg-O4TdJ8RxOP0XDQGi .sectionTitle0{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .sectionTitle1{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .sectionTitle2{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .sectionTitle3{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-O4TdJ8RxOP0XDQGi .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .grid path{stroke-width:0}#mermaid-svg-O4TdJ8RxOP0XDQGi .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-O4TdJ8RxOP0XDQGi .task{stroke-width:2}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText:not([font-size]){font-size:11px}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-O4TdJ8RxOP0XDQGi .task.clickable{cursor:pointer}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText0,#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText1,#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText2,#mermaid-svg-O4TdJ8RxOP0XDQGi .taskText3{fill:#fff}#mermaid-svg-O4TdJ8RxOP0XDQGi .task0,#mermaid-svg-O4TdJ8RxOP0XDQGi .task1,#mermaid-svg-O4TdJ8RxOP0XDQGi .task2,#mermaid-svg-O4TdJ8RxOP0XDQGi .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutside0,#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutside2{fill:#000}#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutside1,#mermaid-svg-O4TdJ8RxOP0XDQGi .taskTextOutside3{fill:#000}#mermaid-svg-O4TdJ8RxOP0XDQGi .active0,#mermaid-svg-O4TdJ8RxOP0XDQGi .active1,#mermaid-svg-O4TdJ8RxOP0XDQGi .active2,#mermaid-svg-O4TdJ8RxOP0XDQGi .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-O4TdJ8RxOP0XDQGi .activeText0,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeText1,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeText2,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeText3{fill:#000 !important}#mermaid-svg-O4TdJ8RxOP0XDQGi .done0,#mermaid-svg-O4TdJ8RxOP0XDQGi .done1,#mermaid-svg-O4TdJ8RxOP0XDQGi .done2,#mermaid-svg-O4TdJ8RxOP0XDQGi .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-O4TdJ8RxOP0XDQGi .doneText0,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneText1,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneText2,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneText3{fill:#000 !important}#mermaid-svg-O4TdJ8RxOP0XDQGi .crit0,#mermaid-svg-O4TdJ8RxOP0XDQGi .crit1,#mermaid-svg-O4TdJ8RxOP0XDQGi .crit2,#mermaid-svg-O4TdJ8RxOP0XDQGi .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCrit0,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCrit1,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCrit2,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCrit0,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCrit1,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCrit2,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-O4TdJ8RxOP0XDQGi .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-O4TdJ8RxOP0XDQGi .milestoneText{font-style:italic}#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCritText0,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCritText1,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCritText2,#mermaid-svg-O4TdJ8RxOP0XDQGi .doneCritText3{fill:#000 !important}#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCritText0,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCritText1,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCritText2,#mermaid-svg-O4TdJ8RxOP0XDQGi .activeCritText3{fill:#000 !important}#mermaid-svg-O4TdJ8RxOP0XDQGi .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-O4TdJ8RxOP0XDQGi g.classGroup text .title{font-weight:bolder}#mermaid-svg-O4TdJ8RxOP0XDQGi g.clickable{cursor:pointer}#mermaid-svg-O4TdJ8RxOP0XDQGi g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-O4TdJ8RxOP0XDQGi g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-O4TdJ8RxOP0XDQGi .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-O4TdJ8RxOP0XDQGi .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .dashed-line{stroke-dasharray:3}#mermaid-svg-O4TdJ8RxOP0XDQGi #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi .commit-id,#mermaid-svg-O4TdJ8RxOP0XDQGi .commit-msg,#mermaid-svg-O4TdJ8RxOP0XDQGi .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-O4TdJ8RxOP0XDQGi g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-O4TdJ8RxOP0XDQGi g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-O4TdJ8RxOP0XDQGi g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-O4TdJ8RxOP0XDQGi .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-O4TdJ8RxOP0XDQGi .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-O4TdJ8RxOP0XDQGi .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-O4TdJ8RxOP0XDQGi .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-O4TdJ8RxOP0XDQGi .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-O4TdJ8RxOP0XDQGi .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-O4TdJ8RxOP0XDQGi .edgeLabel text{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-O4TdJ8RxOP0XDQGi .node circle.state-start{fill:black;stroke:black}#mermaid-svg-O4TdJ8RxOP0XDQGi .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-O4TdJ8RxOP0XDQGi #statediagram-barbEnd{fill:#9370db}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-state .divider{stroke:#9370db}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-O4TdJ8RxOP0XDQGi .note-edge{stroke-dasharray:5}#mermaid-svg-O4TdJ8RxOP0XDQGi .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-O4TdJ8RxOP0XDQGi .error-icon{fill:#522}#mermaid-svg-O4TdJ8RxOP0XDQGi .error-text{fill:#522;stroke:#522}#mermaid-svg-O4TdJ8RxOP0XDQGi .edge-thickness-normal{stroke-width:2px}#mermaid-svg-O4TdJ8RxOP0XDQGi .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-O4TdJ8RxOP0XDQGi .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-O4TdJ8RxOP0XDQGi .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-O4TdJ8RxOP0XDQGi .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-O4TdJ8RxOP0XDQGi .marker{fill:#333}#mermaid-svg-O4TdJ8RxOP0XDQGi .marker.cross{stroke:#333}
:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}</style>
<style>#mermaid-svg-O4TdJ8RxOP0XDQGi {
color: rgba(0, 0, 0, 0.75);
font: ;
}</style>
密碼技術
密碼學基礎
密碼學發展簡史
密碼學基本概念
對稱密碼演算法
非對稱密碼演算法
哈希函式/訊息鑒別和數字簽名
密碼學應用
第一個階段是從古代到19世紀末——古典密碼 第二個階段從20世紀初到1949年——近代密碼 第三個階段從C.E.Shannon(香農) 于1949年發表的劃時代論文“The Communication Theory of Secret Systems ”開始——現代密碼 第四個階段從1976年W. Diffie和M. Hellman發表論文“New Directions in Cryptography”開始——公鑰密碼
還有好多想學的東西,下次一定!