-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1214 lines (879 loc) · 57.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?ea8bf403e3d5a89dbc689e610bd69e8b";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<html style="display: none;" lang="zh">
<head><meta name="generator" content="Hexo 3.9.0">
<meta charset="utf-8">
<!--
© Material Theme
https://github.com/viosey/hexo-theme-material
Version: 1.4.0 -->
<script>window.materialVersion = "1.4.0"</script>
<!-- Title -->
<title>
Stefenson's Blog
</title>
<!-- dns prefetch -->
<meta http-equiv="x-dns-prefetch-control" content="on">
<!-- Meta & Info -->
<meta http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="theme-color" content="#0097A7">
<meta name="author" content="Stefenson Wang">
<meta name="description" itemprop="description" content>
<meta name="keywords" content>
<!-- Site Verification -->
<!-- Favicons -->
<link rel="icon shortcut" type="image/ico" href="/img/favicon.png">
<link rel="icon" sizes="192x192" href="/img/favicon.png">
<link rel="apple-touch-icon" href="/img/favicon.png">
<!--iOS -->
<meta name="apple-mobile-web-app-title" content="Title">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="480">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Stefenson's Blog">
<!-- The Open Graph protocol -->
<meta property="og:url" content="http://yoursite.com">
<meta property="og:type" content="blog">
<meta property="og:title" content="Stefenson's Blog">
<meta property="og:image" content="/img/favicon.png">
<meta property="og:description" content>
<!-- The Twitter Card protocol -->
<meta name="twitter:title" content="Stefenson's Blog">
<meta name="twitter:description" content>
<meta name="twitter:image" content="/img/favicon.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="http://yoursite.com">
<!-- Add canonical link for SEO -->
<link rel="canonical" href="http://yoursite.com">
<!-- Structured-data for SEO -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Website",
"publisher": {
"@type": "Organization",
"name": "Stefenson's Blog",
"logo": "/img/favicon.png"
},
"url": "http://yoursite.com/index.html",
"image": {
"@type": "ImageObject",
"url": "/img/favicon.png"
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "http://yoursite.com"
},
"description": ""
}
</script>
<!--[if lte IE 9]>
<link rel="stylesheet" href="/css/ie-blocker.css">
<script src="/js/ie-blocker.zhCN.js"></script>
<![endif]-->
<!-- Import lsloader -->
<script>(function(){window.lsloader={jsRunSequence:[],jsnamemap:{},cssnamemap:{}};lsloader.removeLS=function(key){try{localStorage.removeItem(key)}catch(e){}};lsloader.setLS=function(key,val){try{localStorage.setItem(key,val)}catch(e){}};lsloader.getLS=function(key){var val="";try{val=localStorage.getItem(key)}catch(e){val=""}return val};versionString="/*"+materialVersion+"*/";lsloader.clean=function(){try{var keys=[];for(var i=0;i<localStorage.length;i++){keys.push(localStorage.key(i))}keys.forEach(function(key){var data=lsloader.getLS(key);if(data&&data.indexOf(versionString)===-1){lsloader.removeLS(key)}})}catch(e){}};lsloader.clean();lsloader.load=function(jsname,jspath,cssonload){cssonload=cssonload||function(){};var code;code=this.getLS(jsname);if(code&&code.indexOf(versionString)===-1){this.removeLS(jsname);this.requestResource(jsname,jspath,cssonload);return}if(code){var versionNumber=code.split(versionString)[0];if(versionNumber!=jspath){console.log("reload:"+jspath);this.removeLS(jsname);this.requestResource(jsname,jspath,cssonload);return}code=code.split(versionString)[1];if(/\.js?.+$/.test(versionNumber)){this.jsRunSequence.push({name:jsname,code:code});this.runjs(jspath,jsname,code)}else{document.getElementById(jsname).appendChild(document.createTextNode(code));cssonload()}}else{this.requestResource(jsname,jspath,cssonload)}};lsloader.requestResource=function(name,path,cssonload){var that=this;if(/\.js?.+$/.test(path)){this.iojs(path,name,function(path,name,code){that.setLS(name,path+versionString+code);that.runjs(path,name,code)})}else if(/\.css?.+$/.test(path)){this.iocss(path,name,function(code){document.getElementById(name).appendChild(document.createTextNode(code));that.setLS(name,path+versionString+code)},cssonload)}};lsloader.iojs=function(path,jsname,callback){var that=this;that.jsRunSequence.push({name:jsname,code:""});try{var xhr=new XMLHttpRequest;xhr.open("get",path,true);xhr.onreadystatechange=function(){if(xhr.readyState==4){if(xhr.status>=200&&xhr.status<300||xhr.status==304){if(xhr.response!=""){callback(path,jsname,xhr.response);return}}that.jsfallback(path,jsname)}};xhr.send(null)}catch(e){that.jsfallback(path,jsname)}};lsloader.iocss=function(path,jsname,callback,cssonload){var that=this;try{var xhr=new XMLHttpRequest;xhr.open("get",path,true);xhr.onreadystatechange=function(){if(xhr.readyState==4){if(xhr.status>=200&&xhr.status<300||xhr.status==304){if(xhr.response!=""){callback(xhr.response);cssonload();return}}that.cssfallback(path,jsname,cssonload)}};xhr.send(null)}catch(e){that.cssfallback(path,jsname,cssonload)}};lsloader.iofonts=function(path,jsname,callback,cssonload){var that=this;try{var xhr=new XMLHttpRequest;xhr.open("get",path,true);xhr.onreadystatechange=function(){if(xhr.readyState==4){if(xhr.status>=200&&xhr.status<300||xhr.status==304){if(xhr.response!=""){callback(xhr.response);cssonload();return}}that.cssfallback(path,jsname,cssonload)}};xhr.send(null)}catch(e){that.cssfallback(path,jsname,cssonload)}};lsloader.runjs=function(path,name,code){if(!!name&&!!code){for(var k in this.jsRunSequence){if(this.jsRunSequence[k].name==name){this.jsRunSequence[k].code=code}}}if(!!this.jsRunSequence[0]&&!!this.jsRunSequence[0].code&&this.jsRunSequence[0].status!="failed"){var script=document.createElement("script");script.appendChild(document.createTextNode(this.jsRunSequence[0].code));script.type="text/javascript";document.getElementsByTagName("head")[0].appendChild(script);this.jsRunSequence.shift();if(this.jsRunSequence.length>0){this.runjs()}}else if(!!this.jsRunSequence[0]&&this.jsRunSequence[0].status=="failed"){var that=this;var script=document.createElement("script");script.src=this.jsRunSequence[0].path;script.type="text/javascript";this.jsRunSequence[0].status="loading";script.onload=function(){that.jsRunSequence.shift();if(that.jsRunSequence.length>0){that.runjs()}};document.body.appendChild(script)}};lsloader.tagLoad=function(path,name){this.jsRunSequence.push({name:name,code:"",path:path,status:"failed"});this.runjs()};lsloader.jsfallback=function(path,name){if(!!this.jsnamemap[name]){return}else{this.jsnamemap[name]=name}for(var k in this.jsRunSequence){if(this.jsRunSequence[k].name==name){this.jsRunSequence[k].code="";this.jsRunSequence[k].status="failed";this.jsRunSequence[k].path=path}}this.runjs()};lsloader.cssfallback=function(path,name,cssonload){if(!!this.cssnamemap[name]){return}else{this.cssnamemap[name]=1}var link=document.createElement("link");link.type="text/css";link.href=path;link.rel="stylesheet";link.onload=link.onerror=cssonload;var root=document.getElementsByTagName("script")[0];root.parentNode.insertBefore(link,root)};lsloader.runInlineScript=function(scriptId,codeId){var code=document.getElementById(codeId).innerText;this.jsRunSequence.push({name:scriptId,code:code});this.runjs()};lsloader.loadCombo=function(jslist){var updateList="";var requestingModules={};for(var k in jslist){var LS=this.getLS(jslist[k].name);if(!!LS){var version=LS.split(versionString)[0];var code=LS.split(versionString)[1]}else{var version=""}if(version==jslist[k].path){this.jsRunSequence.push({name:jslist[k].name,code:code,path:jslist[k].path})}else{this.jsRunSequence.push({name:jslist[k].name,code:null,path:jslist[k].path,status:"comboloading"});requestingModules[jslist[k].name]=true;updateList+=(updateList==""?"":";")+jslist[k].path}}var that=this;if(!!updateList){var xhr=new XMLHttpRequest;xhr.open("get",combo+updateList,true);xhr.onreadystatechange=function(){if(xhr.readyState==4){if(xhr.status>=200&&xhr.status<300||xhr.status==304){if(xhr.response!=""){that.runCombo(xhr.response,requestingModules);return}}else{for(var i in that.jsRunSequence){if(requestingModules[that.jsRunSequence[i].name]){that.jsRunSequence[i].status="failed"}}that.runjs()}}};xhr.send(null)}this.runjs()};lsloader.runCombo=function(comboCode,requestingModules){comboCode=comboCode.split("/*combojs*/");comboCode.shift();for(var k in this.jsRunSequence){if(!!requestingModules[this.jsRunSequence[k].name]&&!!comboCode[0]){this.jsRunSequence[k].status="comboJS";this.jsRunSequence[k].code=comboCode[0];this.setLS(this.jsRunSequence[k].name,this.jsRunSequence[k].path+versionString+comboCode[0]);comboCode.shift()}}this.runjs()}})();</script>
<!-- Import CSS & jQuery -->
<style id="css/material.min.css"></style><script>if(typeof window.lsLoadCSSMaxNums === "undefined")window.lsLoadCSSMaxNums = 0;window.lsLoadCSSMaxNums++;lsloader.load("css/material.min.css","/css/material.min.css?fJTiM/K1J3dWIruo3pxtAw==",function(){if(typeof window.lsLoadCSSNums === "undefined")window.lsLoadCSSNums = 0;window.lsLoadCSSNums++;if(window.lsLoadCSSNums == window.lsLoadCSSMaxNums)document.documentElement.style.display="";})</script>
<style id="css/style.min.css"></style><script>if(typeof window.lsLoadCSSMaxNums === "undefined")window.lsLoadCSSMaxNums = 0;window.lsLoadCSSMaxNums++;lsloader.load("css/style.min.css","/css/style.min.css?hslYKgKmx9IuZcHTcpHD1Q==",function(){if(typeof window.lsLoadCSSNums === "undefined")window.lsLoadCSSNums = 0;window.lsLoadCSSNums++;if(window.lsLoadCSSNums == window.lsLoadCSSMaxNums)document.documentElement.style.display="";})</script>
<style id="/css/fontawesome.min.css"></style><script>if(typeof window.lsLoadCSSMaxNums === "undefined")window.lsLoadCSSMaxNums = 0;window.lsLoadCSSMaxNums++;lsloader.load("/css/fontawesome.min.css","/css/fontawesome.min.css?JpVQUwzBJ7aqWjWSWn3mzg==",function(){if(typeof window.lsLoadCSSNums === "undefined")window.lsLoadCSSNums = 0;window.lsLoadCSSNums++;if(window.lsLoadCSSNums == window.lsLoadCSSMaxNums)document.documentElement.style.display="";})</script>
<!-- Config CSS -->
<!-- Other Styles -->
<style>
body, html {
font-family: Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}
a {
color: #00838F;
}
.mdl-card__media,
#search-label,
#search-form-label:after,
#scheme-Paradox .hot_tags-count,
#scheme-Paradox .sidebar_archives-count,
#scheme-Paradox .sidebar-colored .sidebar-header,
#scheme-Paradox .sidebar-colored .sidebar-badge{
background-color: #0097A7 !important;
}
/* Sidebar User Drop Down Menu Text Color */
#scheme-Paradox .sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>li>a:hover,
#scheme-Paradox .sidebar-colored .sidebar-nav>.dropdown>.dropdown-menu>li>a:focus {
color: #0097A7 !important;
}
#post_entry-right-info,
.sidebar-colored .sidebar-nav li:hover > a,
.sidebar-colored .sidebar-nav li:hover > a i,
.sidebar-colored .sidebar-nav li > a:hover,
.sidebar-colored .sidebar-nav li > a:hover i,
.sidebar-colored .sidebar-nav li > a:focus i,
.sidebar-colored .sidebar-nav > .open > a,
.sidebar-colored .sidebar-nav > .open > a:hover,
.sidebar-colored .sidebar-nav > .open > a:focus,
#ds-reset #ds-ctx .ds-ctx-entry .ds-ctx-head a {
color: #0097A7 !important;
}
.toTop {
background: #757575 !important;
}
.material-layout .material-post>.material-nav,
.material-layout .material-index>.material-nav,
.material-nav a {
color: #757575;
}
#scheme-Paradox .MD-burger-layer {
background-color: #757575;
}
#scheme-Paradox #post-toc-trigger-btn {
color: #757575;
}
.post-toc a:hover {
color: #00838F;
text-decoration: underline;
}
</style>
<!-- Theme Background Related-->
<style>
body{
background-color: #F5F5F5;
}
/* blog_info bottom background */
#scheme-Paradox .material-layout .something-else .mdl-card__supporting-text{
background-color: #fff;
}
</style>
<!-- Fade Effect -->
<style>
.fade {
transition: all 800ms linear;
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
opacity: 1;
}
.fade.out{
opacity: 0;
}
</style>
<!-- Import Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script>lsloader.load("js/jquery.min.js","/js/jquery.min.js?qcusAULNeBksqffqUM2+Ig==")</script>
<script>function Queue(){this.dataStore=[];this.offer=b;this.poll=d;this.execNext=a;this.debug=false;this.startDebug=c;function b(e){if(this.debug){console.log("Offered a Queued Function.")}if(typeof e==="function"){this.dataStore.push(e)}else{console.log("You must offer a function.")}}function d(){if(this.debug){console.log("Polled a Queued Function.")}return this.dataStore.shift()}function a(){var e=this.poll();if(e!==undefined){if(this.debug){console.log("Run a Queued Function.")}e()}}function c(){this.debug=true}}var queue=new Queue();</script>
<!-- Analytics -->
<!-- Custom Head -->
</head>
<link rel="stylesheet" href="https://imsun.github.io/gitment/style/default.css">
<style type="text/css">
/*重新定义gitment样式*/
.gitment-editor-tab {
margin: 0px;
}
.gitment-editor-main {
background-color: white;
}
.gitment-comment-main {
background-color: white;
}
.gitment-editor-submit:enabled {
background-color: black;
}
.gitment-editor-submit:disabled {
background-color: gray;
}
/*重新定义MathJax样式,去掉框线*/
.MathJax {
outline: 0;
}
/*重新定义代码块样式*/
#post-content pre {
color: rgb(255, 240, 192);
background-color: rgba(17, 17, 31, 1);
/* border-radius: 3px; */
}
#post-content pre code {
font-family: "Consolas","Monaco";
}
/*重新定义表格样式*/
#post-content table td {
border: 1px solid rgb(156, 156, 156);
}
#post-content table th {
color: white;
background-color: rgba(128, 128, 128, 0.5);
border: 1px solid rgb(156, 156, 156);
}
/*重新定义头部Tags标签样式*/
#scheme-Isolation .post_entry-tags-head-list {
padding: 0;
margin: 0;
}
#scheme-Isolation .post_entry-tags-head-list-item {
list-style: none;
float: left;
font-size: 11px;
border: 1px solid #c2c2c2;
letter-spacing: 1px;
border-radius: 3px;
padding-right: 6px;
padding-left: 8px;
margin-top: 8px;
margin-right: 8px;
text-align: center;
-webkit-appearance: none;
}
#scheme-Isolation .post_entry-tags-head-list-count {
margin-left: 2px;
color: #BBBBBB;
}
#scheme-Isolation .post_entry-tags-head-list-item a {
text-decoration: none;
color: white;
font-weight: 500;
}
</style>
<body id="scheme-Isolation" class="lazy">
<div class="material-layout mdl-js-layout has-drawer is-upgraded">
<!-- Isolation Header -->
<header class="header">
<div class="header-wrapper">
<!-- Header Copyright -->
<div class="header-copyright" style="bottom: -150px">
<div class="header-site">
©
<script type="text/javascript">
var fd = new Date();
document.write(fd.getFullYear());
</script>
Stefenson's Blog
</div>
<!--
I'm glad you use this theme, the development is no so easy, I hope you can keep the copyright.
It will not impact the appearance and can give developers a lot of support :)
很高兴您使用该主题,开发不易,希望您可以保留一下版权声明。
它不会影响美观并可以给开发者很大的支持。 :)
-->
<div>
Powered by <a href="https://hexo.io" target="_blank" class="footer-develop-a">Hexo</a>
<br>
Theme - <a href="https://github.com/viosey/hexo-theme-material" target="_blank" class="footer-develop-a">Material</a>
<br>
<br>友情链接:
<br>某可爱的司机的博客 <a href="https://blog.chionlab.moe" class="footer-develop-a">Chion82的未来道具研究所</a>
<br>某可爱的日天的博客 <a href="https://sunskyxh.github.io" class="footer-develop-a">香鸡鸡的小窝</a>
<br>某可爱的miruku博客 <a href="https://mirukuchan.github.io" class="footer-develop-a">世界尽头的百货公司</a>
<br>某可爱的钟叔的博客 <a href="https://kurumichann.github.io" class="footer-develop-a">kurumi's blog(miruku?)</a>
</div>
</div>
<!-- Header Title -->
<span class="header-title header-item">
<a href="/" title="Stefenson's Blog">
Stefenson's Blog
</a>
</span>
<p class="header-slogan header-item">
一个渣渣程序员的笔记
</p>
<!-- Header Nav -->
<nav class="header-nav header-item">
<span class="header-nav-item">
<a href="/" title="Home">
<span>主页</span>
</a>
</span>
<!-- Pages -->
<span class="header-nav-item">
<a href="/about" title="About">
<span>About</span>
</a>
</span>
<span class="header-nav-item">
<a id="BackgroundSwitch" href="javascript:switchbg()" title="暂停背景">
<span id="BackgroundSwitchTitle">暂停背景</span>
</a>
</span>
<span class="header-nav-item">
<a id="MouseTrack" href="javascript:mousetrack()" title="追踪鼠标">
<span id="BackgroundSwitchTitle">追踪鼠标</span>
</a>
</span>
</nav>
<!-- Header SNS isolate-sns_list.ejs -->
<!-- Header Nav Pages Level2 -->
<nav class="header-nav header-item">
<span class="header-nav-item">
<a href="/game" title="Game & Demo">
<span>Game & Demo</span>
</a>
</span>
</nav>
</div>
</header>
<!-- Main Container -->
<main class="material-layout__content" id="main">
<!-- Top Anchor -->
<div id="top"></div>
<!-- Index Module -->
<div class="material-index mdl-grid">
<div class="locate-thumbnail-symbol"></div>
<!-- Pin on top -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(0, 0, 0, 0.5)">
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<!-- <div class="post_entry-footer-border" style="height: 1px;"></div> -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px; color:white;">
Tags:
</p>
<div class="post_entry-footer-border" style="height: 1px;"></div>
</div>
<div class="post_entry-footer" style="padding-bottom: 36px;">
<ul class="post_entry-tags-head-list"><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/AES/">AES</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/AVL树/">AVL树</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/DHCP/">DHCP</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/LZ77/">LZ77</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/MD5/">MD5</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/NAT/">NAT</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/PPPoE/">PPPoE</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/RSA/">RSA</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/SHA1/">SHA1</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/hash算法/">hash算法</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/中国剩余定理/">中国剩余定理</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/二叉查找树/">二叉查找树</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/二叉树/">二叉树</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/伽罗华域/">伽罗华域</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/加密/">加密</a><span class="post_entry-tags-head-list-count">2</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/压缩/">压缩</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/哈夫曼/">哈夫曼</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/排序/">排序</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/数论/">数论</a><span class="post_entry-tags-head-list-count">2</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/欧拉函数/">欧拉函数</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/欧拉定理/">欧拉定理</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/矩阵/">矩阵</a><span class="post_entry-tags-head-list-count">2</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/红黑树/">红黑树</a><span class="post_entry-tags-head-list-count">1</span></li><li class="post_entry-tags-head-list-item"><a class="post_entry-tags-head-list-link" href="/tags/网络/">网络</a><span class="post_entry-tags-head-list-count">3</span></li></ul>
</div>
</div>
<!-- Normal Post -->
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2020/07/07/自制NAT网关/">自制NAT网关</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
前面的Blog也提到了,DHCP服务只负责分配IP,路由器里面DHCP服务并不是入网服务,那么真正的入网是哪一部份负责呢?
这里提一个大家都很熟悉的名字:网关。
网关的在Wiki定义是:转发其他服务器通信数据的服务器,接受客户端发送来的请求时,它就像自己...
<span>
<a href="/2020/07/07/自制NAT网关/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
7月 07, 2020
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/NAT/">NAT</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/网络/">网络</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/10/09/无损文件压缩/">无损文件压缩</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
无损压缩(下简称”压缩”)是计算机存储方面很重要的一种课题(至少在过去是),这是一种典型的时间换空间的方案。
过去由于存储介质普遍很贵,所以压缩方式存储文件可以更大化的利用存储介质的空间(就问你有没有见过只有40G的PC硬盘,想想都可怕)。
压缩,顾名思义就是把大文件的体积变小,让他在存储的时候能够少用一点存储空间,而且压缩后的文件能保证可以反向解算出来并且...
<span>
<a href="/2018/10/09/无损文件压缩/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
10月 09, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/LZ77/">LZ77</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/压缩/">压缩</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/哈夫曼/">哈夫曼</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/10/03/有限集内MD5-SHA1可逆吗——MD5、SHA1算法/">有限集内MD5/SHA1可逆吗——MD5、SHA1算法</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
今天讲一讲hash算法。
hash算法不可逆,大家都知道,因为这是一个一对多的问题,一个MD5/SHA1值理论上是可以对应多个原始数据的,所以MD5/SHA1是无法还原出原始信息的。
但是,如果我指定范围,你能通过MD5/SHA1倒推出原始数据吗?
举个例子:定义一个hash算法,取值在255下的模,这样的hash值也是不能直接反推数据的,但是...
<span>
<a href="/2018/10/03/有限集内MD5-SHA1可逆吗——MD5、SHA1算法/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
10月 03, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/MD5/">MD5</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/SHA1/">SHA1</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/hash算法/">hash算法</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/矩阵/">矩阵</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/05/14/AVL树与红黑树/">AVL树与红黑树</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
二叉树是一种很经典的数据结构,利用这种结构,我们可以构造出一个快速的数据查询结构,原理就是利用二叉树每个节点都有两个孩子这一性质,我们让每个树节点的左右孩子性质一样,比如左树都比父节点小,右树都比父节点大,这样的结构中我们从根查找一个数据的速度会加快很多,过程就是比当前值大就去右树找,比当前值小就去左树找。这种树我们叫做二叉排序树,它其实就是一个排序好的队列的二分查找过程的具像化结构。...
<span>
<a href="/2018/05/14/AVL树与红黑树/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
5月 14, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/AVL树/">AVL树</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/二叉查找树/">二叉查找树</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/二叉树/">二叉树</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/红黑树/">红黑树</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/04/15/排序算法/">排序算法</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
今天来说点简单的东西,排序算法。
排序问题应该是目前业务场景中出现的比较多的问题,程序员们学习编程算法所接触到第一个比较复杂也比较有用的算法应该就是冒泡排序算法了,所以说排序算法对于程序员们来说是既陌生又熟悉的存在。
很多编程教程中或者算法书中都对排序算法进行过一番介绍,而且对这些算法的性能作出比较,然后使用时间复杂度或者空间复杂度来描述他们的优劣,但是恐怕...
<span>
<a href="/2018/04/15/排序算法/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
4月 15, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/排序/">排序</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/02/26/AES加密/">AES加密</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
AES加密是一种对称加密算法,全称为Advanced Encryption Standard,高级加密标准,在密码学中又称Rijndael加密法。它是一种区块加密标准,目前是最流行的一种对称加密算法。该算法为比利时密码学家Joan Daemen和Vincent Rijmen所设计,结合两位作者的名字,以Rijndael为名投稿高级加密标准的甄选流程。
AES加密流程很简单...
<span>
<a href="/2018/02/26/AES加密/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
2月 26, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/AES/">AES</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/伽罗华域/">伽罗华域</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/加密/">加密</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/数论/">数论</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/矩阵/">矩阵</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/02/24/RSA加密/">RSA加密</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
今天主要介绍的是RSA加密。
RSA加密是目前世界上最流行的非对称加密,它名字的来源于它的三位父亲:罗纳德·李维斯特(Ron Rivest)、阿迪·萨莫尔(Adi Shamir)和伦纳德·阿德曼(Leonard Adleman),他们在1977年提出了RSA加密并且在1987年7月首次在美国公布,RSA来源于他们的姓氏开头字母。
RSA加密内容其实很简单,先...
<span>
<a href="/2018/02/24/RSA加密/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
2月 24, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/RSA/">RSA</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/中国剩余定理/">中国剩余定理</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/加密/">加密</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/数论/">数论</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/欧拉函数/">欧拉函数</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/欧拉定理/">欧拉定理</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text" style="padding-top: 24px; padding-bottom: 0px;">
<div class="post_entry-footer-border" style="height: 1px;"></div>
<!-- Post Title -->
<p class="post_entry-title" style="margin-bottom: 6px; margin-top: 6px;">
<a href="/2018/02/12/PPPoE服务器编写/">PPPoE服务器编写</a>
</p>
<div class="post_entry-footer-info">
<div class="post_entry-footer-comment">
</div>
</div>
<!-- Post Excerpt -->
<p class="post_entry-excerpt" style="margin-bottom: 24px; padding-left: 8px;">
PPPoE(Point-to-Point Protocol Over Ethernet)协议是一个以太网上的点对点协议,是将点对点协议(PPP)封装在以太网(Ethernet)框架中的一种网络隧道协议。它是一个链路层协议,如果要想自己实现一个PPPoE服务器需要了解链路层编程的相关知识。网络五层架构中:应用——传输——网络——链路——物理。链路层属于比较靠底层的一层,所...
<span>
<a href="/2018/02/12/PPPoE服务器编写/" target="_self">阅读全文</a>
</span>
</p>
<p class="post_entry-footer-date" style="margin-bottom: 0px; margin-top: 0px; float: right;">
2月 12, 2018
</p>
<div class="post_entry-footer-border" style="margin-top: 48px; height: 1px;"></div>
</div>
<!-- Post_entry Footer -->
<div class="post_entry-footer" style="padding-bottom: 36px;">
<!-- Post Tags -->
<ul class="post_entry-tags-list"><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/PPPoE/">PPPoE</a></li><li class="post_entry-tags-list-item"><a class="post_entry-tags-list-link" href="/tags/网络/">网络</a></li></ul>
</div>
</div>
<!-- Isolation Thumbnail -->
<div class="post_entry-module mdl-card mdl-shadow--2dp mdl-cell mdl-cell--12-col fade out" style="background-color: rgba(255,255,255,0.6)">
<!-- Post_entry Header -->
<!-- Post Header Info -->
<div class="post_entry-header_info without-thumbnail">
<!-- Author Avatar & Name -->
<a href="/about" style="text-decoration: none; color: #333">
<img src="/img/avatar.png" class="avatar-img" width="44px" height="44px" alt="Stefenson Wang's avatar">
<span class="name-span">Stefenson Wang</span>
</a>
</div>
<!-- Null Thumbnail -->
<div class="post_thumbnail-null">
</div>
<!-- Post_entry Content -->