林禾堃

@Koios

Joined on Jun 1, 2019

  • RSA 是一個著名的非對稱式加密系統,其安全性建立在大數分解的難度上 目前 RSA 僅能透過旁通道攻擊(Side-Channel Attack) RSA 基本內容 接下來我們需要先介紹 RSA 所需的數學知識 尤拉函數 Eular Function 我們會以 $\phi$ (念作 phi) 表示尤拉函數 定義 $\phi(p)$ 為在所有的正整數當中,有多少 $< p$ 的數字與 $p$ 互質的數字
     Like 32 Bookmark
  • 基礎語法 C++ 環境設定&OnlineJudge 輸入輸出(cin/cout) 變數與資料型態 運算子 條件判斷 迴圈 演算法 Binary Search 背包問題
     Like  Bookmark
  • SC23 <font color="007cc0">Linux Command & Cluster System</font> <font color="007cc0">Linux Environment & Shell Script</font> <font color="007cc0">Executable</font> <font color="007cc0">vim/nvim</font> <font color="007cc0">Fast Login</font> <font color="007cc0">Python Environment</font> SC24 <font color="007cc0">Introduction to Parallel Computing & Programming</font>
     Like  Bookmark
  • Files Google Drive Link Note Day1 Reverse Day2 Pwn Day3 Web Day 4 Crypto Write-up Reverse Pwn
     Like  Bookmark
  • 歐基里德算法 歐基里德算法又稱輾轉相除法,是計算兩個整數的最大公因數(Greatest Common Divisor, GCD)的方法。 有兩個數字 $a, b$,令 $p = gcd(a, b)$,那麼一定存在兩個正整數 $n, m \in \mathbb{R}$ 使得 $$ a = np,\quad b = mp $$ 那麼如果要求 $p$,我們可以不斷讓 $a, b$ 互減,最後就會剩下 $p$
     Like 4 Bookmark
  • 關於線性代數的學習筆記,參考台大 李宏毅 教授 2018 年的線上影片 相關講義可以參閱 http://speech.ee.ntu.edu.tw/~tlkagk/courses_LA18.html What is Linear Algebra System of Linear Equations Vector Matrix Matrix-Vector Product Have Solution or not
     Like 1 Bookmark
  • ppt講義(簡單版) ppt講義(進階版) interpertability AutoML HackMD 講師: 奧義智慧科技 陳仲寬 FaceBook:陳仲寬 Gmail: bletchley13@gmail.com
     Like 2 Bookmark
  • # UVa 刷題 [TOC] ## MarkDown 自動生成not solved yet :::spoiler Code ```cpp= #include<iostream> #include<fstream> using namespace std; int main() { int code; ofstream fout; fout.open("output.txt",ios::out); while(cout<<"code:",cin>>code){ if(code==-1){ fout.close(); return 0; } fout<<"[UVa"<<code<<"](http://domen111.github.io/UVa-Easy-Viewer/?"<<code<<")\n"; } return 0; } ``` ::: ## not solved yet :::spoiler not solved yet [UVa11876](http://domen111.github.io/UVa-Easy-Viewer/?118
     Like 1 Bookmark
  • # picoCTF2018 [TOC] ## General Skills ### General Warmup 1 **題敘:** :::warning If I told you your grade was 0x41 in hexadecimal, what would it be in ASCII? ::: **解法:** ```python= print(chr(0x41)) ``` **輸出:** ``` A ``` **flag:** ``` picoCTF{A} ``` ### General Warmup 2 **題敘:** :::warning Can you convert the number 27 (base 10) to binary (base 2)? ::: **解法:** ```python= print(format(27,'b')) ``` **輸出:** ``` 11011 ``` **flag:** ``` picoCTF{11011} ``` ### General Warmup 3 **題敘:** :::warning What is
     Like  Bookmark