A command line tool for AES encryption and decryption.
- C# 9.0
- .NET Core 5.0
- Visual Studio for Mac
$ dotnet encryptor.dll encrypt [input_file_name] [output_file_name]
[input_file_name] is target file that will be encrypted.
After program was executed, a secret key file as generated as 'secret_key.'
$ dotnet encryptor.dll decrypt [input_file_name] [output_file_name]
[input_file_name] is encrypted file.
- C# 9.0
- .NET 5.0
- Visual Studio for Mac
$ dotnet encryptor.dll encrypt [入力ファイル名] [出力ファイル名]
[入力ファイル名]は暗号化される対象の元ファイルです。 実行後、'secret_key'という秘密鍵のファイルが作成されます。
$ dotnet encryptor.dll decrypt [入力ファイル名] [出力ファイル名]
[入力ファイル名]は暗号化したファイルです。