Skip to content

Commit

Permalink
Fix that funky formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Jul 21, 2024
1 parent 2df30d0 commit 78b168e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions NDecrypt/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,18 +154,18 @@ private static void DisplayHelp(string? err = null)
if (!string.IsNullOrWhiteSpace(err))
Console.WriteLine($"Error: {err}");

Console.WriteLine(@"Usage: NDecrypt.exe <operation> [flags] <path> ...
Console.WriteLine(@"Usage: NDecrypt <operation> [flags] <path> ...
Possible values for <operation>:
e, encrypt - Encrypt the input files
d, decrypt - Decrypt the input files
Possible values for [flags] (one or more can be used):
-c, --citra - Enable using aes_keys.txt instead of keys.bin
-dev, --development - Enable using development keys, if available
-f, --force - Force operation by avoiding sanity checks
-h, --hash - Output size and hashes to a companion file
-k, --keyfile <path> - Path to keys.bin or aes_keys.txt
-c, --citra Enable using aes_keys.txt instead of keys.bin
-dev, --development Enable using development keys, if available
-f, --force Force operation by avoiding sanity checks
-h, --hash Output size and hashes to a companion file
-k, --keyfile <path> Path to keys.bin or aes_keys.txt
<path> can be any file or folder that contains uncompressed items.
More than one path can be specified at a time.");
Expand Down

0 comments on commit 78b168e

Please sign in to comment.