0%

秘密分享经典方案

基本定义

秘密分享的概念最早由Shamir和Blakley提出,秘密分享主要由两个算法构成:

  • 分配算法:分发者将秘密$s$分割成若干个份额,在一组参与者$P=\{P_1,P_2,\cdots,P_n\}$中进行分配,是得每一个参与者都得到关于该秘密的一个份额
  • 恢复算法:保证只有$P$的一部分特定的子集才能有效地恢复秘密,甚至可能得不到关于$s$的任何有用信息
Read more »

配置bash代理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//配置部分代理
git config --global http.https://github.com.proxy https://127.0.0.1:xxx
git config --global https.https://github.com.proxy https://127.0.0.1:xxx
//配置全局代理
git config --global https.proxy http://127.0.0.1:xxx
git config --global http.proxy https://127.0.0.1:xxx
//取消部分代理
git config --global --unset https.https://github.com.proxy
git config --global --unset http.https://github.com.proxy
//取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
//查看当前局部代理
git config --global --get https.https://github.com.proxy
git config --global --get http.https://github.com.proxy
//查看当前全局代理
git config --global --get https.proxy
git config --global --get http.proxy

提交PR

1
2
3
4
5
6
git checkout -b dev
# fix something
git add .
git commit -m "msg"
git push origin dev
# login

第一章:绪论

计算

  • 计算=信息处理

  • 计算:借助某种工具,遵照一定规则,以明确而机械的方法进行

  • 计算模型=计算机=信息处理工具

Read more »

GRE

6 sections

  • 作文 6
    • AW:analytical writing section
    • ISSUE:30min : Writing task 2 in IELTS
  • 语文 verbal 170
  • 数学 quant 170

计划有变,被迫退考(

Read more »