2019年度 ネットワークセキュリティ 第1回レポートのRSA暗号実装
簡単なRSA暗号を実装したリポジトリです。 サーバから得た暗号文をクライアントで復号できます。
node.js v12.13.1
各ディレクトリに移動してから以下のコマンドを実行してください
$ npm install
$ npm run build
$ STUDENT_NO=<Student Number> node dist/app.js
$ npm run run
または
$ node dist/index.js
├── README.md
├── client
│ ├── index.js
│ ├── package-lock.json
│ └── package.json
└── server
├── app.js
├── package-lock.json
└── package.json
MIT