ChaCha20ChaCha20은 4x4 행렬을 사용하는 블록 암호 알고리즘이다.(정확히는 stream cipher & 대칭키 암호) 각 행렬 요소는 32비트의 정수다.(512-bit blocks이고, 세세하게는 32-bit constant 4개, 256-bit key, 32-bit block counter, 96-bit nonce로 구성되어 있다.) 행렬은 16진수로 표현하였다.overviewFirst := input: [constants | key | counter | nonce] → ChaCha20 Block Function → output: [key_stream] Second := [key_stream] XOR [plaintext] = [ciphertext] First is ChaCha20 Bloc..