From 7d0bebd51a5e27ef395e23a2fb70fee2da99c8a3 Mon Sep 17 00:00:00 2001 From: P7MJ Date: Fri, 26 Jun 2026 16:44:05 -0400 Subject: [PATCH] Update README.md --- README.md | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 2065c6e..5b9a966 100644 --- a/README.md +++ b/README.md @@ -59,37 +59,27 @@ Command Usage: Examples: -`encrypt README.md README.md.p7c_enc hello!26 0 0 0` +**`encrypt README.md README.md.p7c_enc hello!26 0 0 0`** - Encrypts `README.md` into `README.md.p7c_enc` using password `hello!26` without using keyfiles or deleting original files -`decrypt README.md.p7c_enc README.md hello!26 0 0 0` +**`decrypt README.md.p7c_enc README.md hello!26 0 0 0`** - Decrypts `README.md.p7c_enc` into `README.md` using password `hello!26` without using keyfiles or deleting original files -`encrypt archive.zip archive.zip.p7c_enc hello!na 1 archive_key.p7c_key 1` +**`encrypt archive.zip archive.zip.p7c_enc hello!na 1 archive_key.p7c_key 1`** - Encrypts `archive.zip` into `archive.zip.p7c_enc` with password `hello!na` and creating keyfile `archive_key.p7c_key`. Deletes the original file (`archive.zip`) after encryption. -`decrypt archive.zip.p7c_enc archive.zip hello!na 1 archive_key.p7c_key `` +**`decrypt archive.zip.p7c_enc archive.zip hello!na 1 archive_key.p7c_key 1`** - Decrypts `archive.zip.p7c_enc` into `archive.zip` with password `hello!na` and using `archive_key.p7c_key` as the keyfile. Deletes `archive_zip.p7c_enc` and `archive_key.p7c_key` after decryption. -All parameters in square brackets (`[` `]`) are optional, but you must put something in there. +All parameters in square brackets (`[]`) are optional, but you must put something in there. -If you wish to leave them blank, please type one of: - - `None` - - `0` - - `no` - - `No` - - `False` -in their place. - -If you wish to set use_key or delete_original to True, please type one of: - - `True` - - `1` +If you wish to leave them blank, please type one of `None`, `0`, `no`, `No`, `False` in their place. If you wish to set use_key or delete_original to True, please type one of `True`, `1` - `yes` - `Yes` - `exists`