Skip to content

Commit

Permalink
docs: Added table for commands or options supported
Browse files Browse the repository at this point in the history
  • Loading branch information
FajarKim committed Dec 23, 2023
1 parent e2e029d commit 3530efe
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,39 @@ Untuk memulai menggunakan Go-crypt, ikuti langkah-langkah ini:
echo "Text encrypted!" | gcrypt dec -p SecretPassKey
```
Perintah atau opsi yang didukung:
<table>
<tr>
<td><p align="center"><b>Perintah atau Opsi</b></p></td>
<td><p align="center"><b>Keterangan</b></p></td>
</tr>
<tr>
<td><code>-h</code>, <code>--help</code>, atau <code>help</code></td>
<td>Menampilkan bantuan untuk alat ini.</td>
</tr>
<tr>
<td><code>-V</code> atau <code>--version</code></td>
<td>Menampilkan versi alat ini.</td>
</tr>
<tr>
<td><code>-f</code> atau <code>--file</code></td>
<td>Menggunakan file untuk mulai mengenkripsi atau mendekripsi.</td>
</tr>
<tr>
<td><code>-p</code> atau <code>--passkey</code></td>
<td>Masukkan password yang kuat untuk enkripsi atau password yang spesifik untuk dekripsi.</td>
</tr>
<tr>
<td><code>enc</code></td>
<td>Opsi untuk mulai mengenkripsi.</td>
</tr>
<tr>
<td><code>dec</code></td>
<td>Opsi untuk mulai mendekripsi.</td>
</tr>
</table>
## Berkontribusi
Kontribusi pada Go-crypt sangat dihargai! Baik melaporkan bug, menyarankan fitur baru, atau berkontribusi pada perbaikan kode.
Expand Down
33 changes: 33 additions & 0 deletions docs/README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,39 @@ To start using Go-crypt, follow these steps:
echo "Text encrypted!" | gcrypt dec -p SecretPassKey
```
Supported commands or options:
<table>
<tr>
<td><p align="center"><b>Commands or Options</b></p></td>
<td><p align="center"><b>Description</b></p></td>
</tr>
<tr>
<td><code>-h</code>, <code>--help</code>, or <code>help</code></td>
<td>Display help for this tool.</td>
</tr>
<tr>
<td><code>-V</code> or <code>--version</code></td>
<td>Display the version of this tool.</td>
</tr>
<tr>
<td><code>-f</code> or <code>--file</code></td>
<td>Use a file to start encrypting or decrypting.</td>
</tr>
<tr>
<td><code>-p</code> or <code>--passkey</code></td>
<td>Enter a strong password for encryption or a specific password for decryption.</td>
</tr>
<tr>
<td><code>enc</code></td>
<td>Option to start encrypting.</td>
</tr>
<tr>
<td><code>dec</code></td>
<td>Option to start decrypting.</td>
</tr>
</table>
## Contribution
Contributions to Go-crypt are highly appreciated! Whether reporting bugs, suggesting new features, or contributing to code improvements.
Expand Down

0 comments on commit 3530efe

Please sign in to comment.