Skip to content

Commit

Permalink
Aggiornato README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescoValentini committed Jan 17, 2023
1 parent 3ebf621 commit 3b8e474
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ Per criptare un file procedere come segue:
- Base64
- Base58
- Esadecimale (Hex)

- **SPACING:** Aggiunge uno spazio dopo "n" caratteri
- PGP Word list

- **SPACING:** Aggiunge uno spazio dopo "n" caratteri (Disabilitato con codifica PGP Word list)
- **TextArea Wrapping:** Opzione di "a capo automatico" della textArea

Queste informazioni vengono memorizzate attraverso le "Java Preferences API"
Expand Down Expand Up @@ -68,6 +69,7 @@ Non mi assumo nessuna responsabilità di eventuali danni provocati da questo cod

# Credits
<a href="https://www.flaticon.com/free-icons/data-encryption" title="data encryption icons">Data encryption icons created by kerismaker - Flaticon</a>
<a href="https://github.com/ZeroAlphaTech/j-pgp-wordlist" title="PGP Word list encoding library">Libreria utilizzata per la codifica PGP Word List</a>

# Sitografia
- https://it.wikipedia.org/wiki/Advanced_Encryption_Standard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private void initialize() {
cmbEncoding.setBounds(93, 11, 200, 36);
panel.add(cmbEncoding);

cmbEncoding.setModel(new DefaultComboBoxModel(new String[] {"Base64", "Base58", "Hex", "PGP Wordlist"}));
cmbEncoding.setModel(new DefaultComboBoxModel(new String[] {"Base64", "Base58", "Hex", "PGP Word list"}));

JButton btnSaveSettings = new JButton("SAVE");
btnSaveSettings.setBackground(Color.WHITE);
Expand Down

0 comments on commit 3b8e474

Please sign in to comment.