Crypto Study Materials
Dear students, our great journey into cryptography begins!
We will implement shamir secret share scheme. before start coding, you should:
- run follow bash instructions in your terminal
go env -w GOPROXY=https://goproxy.cn,direct
go mod tidy- try to run 'secret_share/secret_share_test.go' file, and you will fail all the test examples as you haven't finished the code.
We will implement chinese remainder theorem(crt). You should assume the moduli in equation are always co-prime.
Before start your programming work, run following instructions in your terminal
git fetch upstream
git merge upstream/study/secret_shareor
git pull upstream study/secret_share
You will encounter merge conflicts. Please solve it!