Programma per la creazione di password sicure per tutti gli account. Diverse possibilità di creazione
- solo numeri
- solo lettere (maiuscole)
- solo lettere (minuscole)
- solo lettere
- numeri e lettere
- completa (numeri lettere e simboli)
Creato sfruttando le librerie di python random
(per la generazione della scelta casuale del simbolo) e string
(pre ricavare le stringhe con i codici ascii dei singoli caratteri e simboli.
Caricato anche il file eseguibile per Windows in modo da utilizzare più facimente il codice direttamente da linea di comando. Eseguibile creato con la libreria pyinstaller
.
Program for creating secure passwords for all accounts. Different creation possibilities
- numbers only
- only letters (uppercase)
- letters only (lowercase)
- letters only
- numbers and letters
- complete (numbers, letters and symbols)
Created using the python libraries random
(for the generation of the random choice of the symbol) and string
(to get the strings with the ascii codes of the single characters and symbols.
Also loaded the executable file for Windows in order to use the code more easily directly from the command line. Executable created with the pyinstaller
library.