-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1250 lines (658 loc) · 43.1 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>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="Hexo Theme Keep">
<meta name="description" content="Hexo Theme Keep">
<meta name="author" content="0x-wen">
<title>
Blog
</title>
<link rel="stylesheet" href="/blog/css/style.css">
<link rel="shortcut icon" href="/blog/images/logo.svg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.1/font/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.1/font/css/regular.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.1/font/css/solid.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hexo-theme-keep/4.1.1/font/css/brands.min.css">
<script class="keep-theme-configurations">
const KEEP = window.KEEP || {}
KEEP.hexo_config = {"hostname":"0x-wen.github.io","root":"/blog/","language":"zh-CN","path":"search.json"}
KEEP.theme_config = {"base_info":{"primary_color":"#0066cc","title":"Blog","author":"0x-wen","avatar":"/images/logo.svg","logo":"/images/logo.svg","favicon":"/images/logo.svg"},"menu":{"home":"/ || fa-solid fa-home","archives":"/archives || fa-solid fa-box-archive","tags":"/tags || fa-solid fa-tags","categories":"/categories || fa-solid fa-layer-group","about":"/about || fa-solid fa-user-graduate"},"first_screen":{"enable":true,"background_img":"/images/bg.svg","background_img_dark":"/images/bg.svg","description":"纵横千里独行客,何惧前路雨潇潇.","hitokoto":false},"social_contact":{"enable":true,"links":{"github":"https://github.com/0x-wen","weixin":"./images/wx-qrcode.jpg","qq":null,"weibo":null,"zhihu":null,"twitter":null,"x":null,"facebook":null,"email":"[email protected]"}},"scroll":{"progress_bar":true,"percent":true,"hide_header":true},"home":{"announcement":null,"category":true,"tag":true,"post_datetime":"updated"},"post":{"author_badge":{"enable":false,"level_badge":false,"custom_badge":["One","Two","Three"]},"word_count":{"wordcount":true,"min2read":true},"datetime_format":"YYYY-MM-DD HH:mm:ss","copyright_info":true,"share":true,"reward":{"enable":false,"img_link":null,"text":null}},"code_block":{"tools":{"enable":true,"style":"mac"},"highlight_theme":"obsidian"},"toc":{"enable":true,"number":true,"expand_all":true,"init_open":true,"layout":"right"},"website_count":{"busuanzi_count":{"enable":false,"site_uv":false,"site_pv":false,"page_pv":false}},"local_search":{"enable":true,"preload":true},"comment":{"enable":false,"use":"valine","valine":{"appid":null,"appkey":null,"server_urls":null,"placeholder":null},"gitalk":{"github_id":null,"github_admins":null,"repository":null,"client_id":null,"client_secret":null,"proxy":null},"twikoo":{"env_id":null,"region":null,"version":"1.6.21"},"waline":{"server_url":null,"reaction":false,"version":2},"giscus":{"repo":null,"repo_id":null,"category":"Announcements","category_id":null,"reactions_enabled":false},"artalk":{"server":null},"disqus":{"shortname":null}},"rss":{"enable":false},"lazyload":{"enable":true},"cdn":{"enable":true,"provider":"cdnjs"},"pjax":{"enable":false},"footer":{"since":2020,"word_count":true,"icp":{"enable":false,"record_code":null,"url":"https://beian.miit.gov.cn"},"site_deploy":{"enable":false,"provider":"github","url":null},"shields_style":{"enable":false}},"inject":{"enable":false,"css":[null],"js":[null]},"root":"/blog","source_data":{},"version":"4.1.1"}
KEEP.language_ago = {"second":"%s 秒前","minute":"%s 分钟前","hour":"%s 小时前","day":"%s 天前","week":"%s 周前","month":"%s 个月前","year":"%s 年前"}
KEEP.language_code_block = {"copy":"复制代码","copied":"已复制","fold":"折叠代码块","folded":"已折叠"}
KEEP.language_copy_copyright = {"copy":"复制版权信息","copied":"已复制","title":"原文标题","author":"原文作者","link":"原文链接"}
</script>
<meta name="generator" content="Hexo 7.1.1"></head>
<body>
<div class="progress-bar-container">
<span class="scroll-progress-bar"></span>
</div>
<main class="page-container border-box">
<!-- home first screen -->
<div class="first-screen-container border-box flex-center fade-in-down-animation">
<div class="first-screen-content border-box">
<div class="top-placeholder border-box"></div>
<div class="middle-placeholder border-box">
<div class="description border-box">
<div class="desc-item border-box"><span class="desc">纵横千里独行客,何惧前路雨潇潇.</span><span class="cursor">|</span></div>
</div>
</div>
<div class="bottom-placeholder border-box">
<div class="sc-icon-list border-box">
<!-- fontawesome icons -->
<div class="tooltip sc-icon-item "
data-tooltip-content="GitHub"
>
<a target="_blank" href="https://github.com/0x-wen">
<i class="fab fa-github"></i>
</a>
</div>
<div class="tooltip sc-icon-item "
data-tooltip-content="微信"
>
<a target="_blank" href="./images/wx-qrcode.jpg">
<i class="fab fa-weixin"></i>
</a>
</div>
<div class="tooltip sc-icon-item "
data-tooltip-content="Email"
>
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
</div>
<!-- custom svg icons -->
</div>
</div>
</div>
</div>
<!-- page content -->
<div class="page-main-content border-box is-home">
<div class="page-main-content-top">
<header class="header-wrapper transparent-1">
<div class="border-box header-content has-first-screen">
<div class="left border-box">
<a class="logo-image border-box" href="/blog/">
<img src="/blog/images/logo.svg">
</a>
<a class="site-name border-box" href="/blog/">
Blog
</a>
</div>
<div class="right border-box">
<div class="pc">
<ul class="menu-list">
<li class="menu-item">
<a class="active"
href="/blog/"
>
<i class="menu-icon fa-solid fa-home"></i>
首页
</a>
</li>
<li class="menu-item">
<a class=""
href="/blog/archives"
>
<i class="menu-icon fa-solid fa-box-archive"></i>
归档
</a>
</li>
<li class="menu-item">
<a class=""
href="/blog/tags"
>
<i class="menu-icon fa-solid fa-tags"></i>
标签
</a>
</li>
<li class="menu-item">
<a class=""
href="/blog/categories"
>
<i class="menu-icon fa-solid fa-layer-group"></i>
分类
</a>
</li>
<li class="menu-item">
<a class=""
href="/blog/about"
>
<i class="menu-icon fa-solid fa-user-graduate"></i>
关于
</a>
</li>
<li class="menu-item search search-popup-trigger">
<i class="fas search fa-search"></i>
</li>
</ul>
</div>
<div class="mobile">
<div class="icon-item search search-popup-trigger"><i class="fas fa-search"></i></div>
<div class="icon-item menu-bar">
<div class="menu-bar-middle"></div>
</div>
</div>
</div>
</div>
<div class="header-drawer">
<ul class="drawer-menu-list">
<li class="drawer-menu-item flex-center">
<a class="active"
href="/blog/"
>首页</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/blog/archives"
>归档</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/blog/tags"
>标签</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/blog/categories"
>分类</a>
</li>
<li class="drawer-menu-item flex-center">
<a class=""
href="/blog/about"
>关于</a>
</li>
</ul>
</div>
<div class="window-mask"></div>
</header>
</div>
<div class="page-main-content-middle border-box">
<div class="main-content border-box">
<div class="home-content-container fade-in-down-animation">
<ul class="home-post-list border-box">
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/07/01/5-sui/500-move%E5%85%A5%E9%97%A8%E4%B8%8E%E4%BA%A4%E4%BA%92/">
move入门与交互
</a>
</h3>
<div class="home-post-content keep-markdown-body">
move基础课
move中文社区
黑客松
Task1环境安装
Install 文档已经很齐全了,直接开整
01-hello-world 建议查看并熟悉
任务概览
fork这个仓库 letsmove
复制 mover/001 并重命名为自...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:37:26 GMT+0800"
>2024-10-31 21:37:26</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/blockchain/">blockchain</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/move/">move</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/07/01/5-sui/500-move%E5%85%A5%E9%97%A8%E4%B8%8E%E4%BA%A4%E4%BA%92/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/07/01/0-wallet/04-%E4%BD%8D%E3%80%81%E5%AD%97%E8%8A%82%E3%80%81%E5%AD%97%E7%AC%A6%E4%B8%8E%E7%BC%96%E7%A0%81/">
位、字节、字符与编码
</a>
</h3>
<div class="home-post-content keep-markdown-body">
位(Bit)、字节(Byte)、字符(Character)和编码(Encoding)基础概念讲解位(Bit):
位是计算机存储和处理信息的最小单位,表示一个二进制数字,可以是0或1。
位是构建更大数据单位的基础。
字节(Byte):
字节是由8个位...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:38:26 GMT+0800"
>2024-10-31 21:38:26</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/07/01/0-wallet/04-%E4%BD%8D%E3%80%81%E5%AD%97%E8%8A%82%E3%80%81%E5%AD%97%E7%AC%A6%E4%B8%8E%E7%BC%96%E7%A0%81/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/06/28/1-bitcoin/100-btc%E5%9C%B0%E5%9D%80%E8%A7%84%E5%88%99/">
Bitcoin地址规则
</a>
</h3>
<div class="home-post-content keep-markdown-body">
1.私钥生成规则
私钥由 24 组数字组成,每 11 个数字为一组,共计 264 个二进制数字(24×11=264)
私钥的组成 = 随机二进制数 + 校验和
私钥有一部分是随机生成的,
最后 8 位叫作校验和(checksu...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:37:44 GMT+0800"
>2024-10-31 21:37:44</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/blockchain/">blockchain</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/bitcoin/">bitcoin</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/06/28/1-bitcoin/100-btc%E5%9C%B0%E5%9D%80%E8%A7%84%E5%88%99/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/06/25/0-wallet/40-MPC%E9%92%B1%E5%8C%8501/">
MPC钱包01
</a>
</h3>
<div class="home-post-content keep-markdown-body">
探索MPC钱包:数字资产安全的革命性创新
随着数字货币的普及,资产安全成为用户关注的焦点。传统的钱包依赖于单一私钥,存在单点故障的风险。MPC钱包的出现,以其独特的多方计算技术,为数字资产的安全存储和交易提供了新的解决方案。
MPC钱包的核心原理M...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:37:54 GMT+0800"
>2024-10-31 21:37:54</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/go/">go</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/mpc/">mpc</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/06/25/0-wallet/40-MPC%E9%92%B1%E5%8C%8501/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/06/13/0-wallet/34-Cosmos%E9%92%B1%E5%8C%85%E5%BC%80%E5%8F%91/">
Cosmos钱包开发
</a>
</h3>
<div class="home-post-content keep-markdown-body">
cosmos地址生成非确定性钱包地址生成
secp256k1.GenPrivKey() 生成私钥
通过私钥->公钥->cmtcrypto.Address->bytes
转换为cosmos中 baseAccount 账户模型并获取地址...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:37:58 GMT+0800"
>2024-10-31 21:37:58</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/cosmos/">cosmos</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/06/13/0-wallet/34-Cosmos%E9%92%B1%E5%8C%85%E5%BC%80%E5%8F%91/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/06/04/0-wallet/33-Ethereum%E9%92%B1%E5%8C%85%E5%BC%80%E5%8F%91/">
Ethereum钱包开发
</a>
</h3>
<div class="home-post-content keep-markdown-body">
Ethereum钱包开发
基于go实现以太坊离线钱包
主要依赖仓库列表:
12345 github.com/ethereum/go-ethereum v1.14.4 github.com/tyler-smith/go-bip32 v1...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:38:02 GMT+0800"
>2024-10-31 21:38:02</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/ethereum/">ethereum</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/06/04/0-wallet/33-Ethereum%E9%92%B1%E5%8C%85%E5%BC%80%E5%8F%91/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/05/31/0-wallet/32-Bitcoin%E9%92%B1%E5%8C%85%E5%BC%80%E5%8F%91/">
Bitcoin钱包开发
</a>
</h3>
<div class="home-post-content keep-markdown-body">
Bitcoin 钱包地址类型P2PKH(Pay-to-PubKeyHash)普通地址
格式:以1开头,例如 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa。
特点:最传统和最常见的地址类型,广泛用于比特币早期交易,直接将比特币发...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:38:05 GMT+0800"
>2024-10-31 21:38:05</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/bitcoin/">bitcoin</a></li>
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/05/31/0-wallet/32-Bitcoin%E9%92%B1%E5%8C%85%E5%BC%80%E5%8F%91/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/05/28/0-wallet/31-HD%E9%92%B1%E5%8C%85%E5%8A%A9%E8%AE%B0%E8%AF%8D%E7%94%9F%E6%88%90/">
HD钱包助记词生成
</a>
</h3>
<div class="home-post-content keep-markdown-body">
助记词生成概念讲解助记词(Mnemonic Phrase) 是一种用于加密货币钱包中生成和管理私钥的方法,基于 BIP-39 标准。
生成原理
随机熵生成:创建一段随机熵,长度为 128 到 256 位,通常是 32 的倍数。
计算校验和:对熵进行 ...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:38:09 GMT+0800"
>2024-10-31 21:38:09</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/05/28/0-wallet/31-HD%E9%92%B1%E5%8C%85%E5%8A%A9%E8%AE%B0%E8%AF%8D%E7%94%9F%E6%88%90/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/05/28/0-wallet/07-%E5%85%B1%E4%BA%AB%E9%97%A8%E9%99%90%E7%A7%98%E5%AF%86%E7%AE%97%E6%B3%95/">
共享门限秘密算法
</a>
</h3>
<div class="home-post-content keep-markdown-body">
门限共享秘密算法(Threshold Secret Sharing,TSS)重点知识点
密钥分片:门限共享秘密算法将一个秘密(如加密密钥或钱包的助记词)分割成多个部分,称为份额(shares)。
门限值:确定一个门限值(K),只有当收集到至少K个份额...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">
<span class="meta-info-item border-box">
<i class="icon fa-solid fa-history"></i> <span class="home-post-history"
data-updated="Thu Oct 31 2024 21:38:15 GMT+0800"
>2024-10-31 21:38:15</span>
</span>
<span class="meta-info-item post-category border-box"><i class="icon fas fa-folder"></i>
<ul class="post-category-ul">
<li class="category-item"><a href="/blog/categories/wallet/">wallet</a></li>
</ul>
</span>
<span class="post-tag meta-info-item border-box">
<ul class="post-tag-ul">
<li class="tag-item"><span class="tag-separator"><i class="icon fas fa-hashtag"></i></span><a href="/blog/tags/blockchain/">blockchain</a></li>
</ul>
</span>
</div>
<a class="home-read-more" href="/blog/2024/05/28/0-wallet/07-%E5%85%B1%E4%BA%AB%E9%97%A8%E9%99%90%E7%A7%98%E5%AF%86%E7%AE%97%E6%B3%95/">阅读全文 <i class="icon fas fa-angle-right"></i></a>
</div>
</div>
</li>
<li class="home-post-item">
<div class="home-post-item-bottom border-box">
<h3 class="home-post-title border-box">
<a href="/blog/2024/05/28/0-wallet/06-Schnorr%E5%92%8CBLS%E4%B8%8E%E5%93%88%E5%B8%8C%E7%AE%97%E6%B3%95%E8%AE%B2%E8%A7%A3/">
Schnorr和BLS与哈希算法讲解
</a>
</h3>
<div class="home-post-content keep-markdown-body">
Schnorr签名算法
Schnorr签名算法是一种基于离散对数问题的数字签名算法,由克劳斯·施诺尔(Claus-Peter Schnorr)于1989年提出。
重点任务:
理解Schnorr签名算法的工作原理。
掌握算法参数的选择和密钥生成过程...
</div>
<div class="post-meta-info-container border-box home">
<div class="post-meta-info border-box">