Cypher

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 95c089a0a826291f3188b83c4c2f02c6d46d1fc8
parent 86a9aba6deba72f2dab84f461f842dd55a300588
Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com>
Date:   Mon, 25 Apr 2022 22:50:41 +0900


Diffstat:
MProgram.cs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Program.cs b/Program.cs @@ -177,7 +177,7 @@ static void encrypt() } //データ配列をファイルに書き込む - //ファイルを百分割 + //ファイルをバイトごとに分割 //ファイルを開く System.IO.FileStream fileStream = new System.IO.FileStream( @@ -201,7 +201,7 @@ static void encrypt() //配列の順に検索 a = 0; StreamWriter writer = new StreamWriter(whereEncryptedFile); - while (a < 100) + while (a < date.Length) { //参照すべき行を検索 b = order[a];