Skip to content

ZuryOphre/random-pass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

This code defines several functions to perform different tasks related to password encryption and storage.

The generate_key(password) function generates a cryptographic key using the PBKDF2 key derivation function. It takes a password as input, and uses it along with a randomly generated salt and a large number of iterations to produce a key that is difficult to crack.

The encrypt_password(password, key) function encrypts a given password using the Fernet encryption algorithm and the key generated by the generate_key function. The password is first converted to bytes and then encrypted.

The save_password(password) function uses the generate_key and encrypt_password functions to encrypt the password and then writes the encrypted password to a file named encrypted_passwords.txt.

The generate_random_password(longitud=16) function generates a random password of a given length, using the os.urandom() method to generate cryptographically secure random bytes, and then converting them to hexadecimal format to produce a password.

The main() function generates a random password and saves it securely by calling the save_password function,

Finally, the if name == 'main': block at the bottom of the code ensures that the main() function is only executed when the code is run directly (and not when it is imported as a module into another script).

Este código define varias funciones para realizar diferentes tareas relacionadas con el cifrado y almacenamiento de contraseñas.

La función generate_key(password) genera una clave criptográfica usando la función de derivación de clave PBKDF2. Toma como entrada una contraseña y utiliza una sal generada aleatoriamente y un gran número de iteraciones para producir una clave difícil de descifrar.

La función encrypt_password(password, key) cifra una contraseña dada utilizando el algoritmo de cifrado Fernet y la clave generada por la función generate_key. La contraseña se convierte primero a bytes y luego se cifra.

La función save_password(password) utiliza las funciones generate_key y encrypt_password para cifrar la contraseña y luego escribe la contraseña cifrada en un archivo llamado encrypted_passwords.txt.

La función generate_random_password(longitud=16) genera una contraseña aleatoria de una longitud dada, utilizando el método os.urandom() para generar bytes aleatorios seguros criptográficamente y luego convirtiéndolos a formato hexadecimal para producir una contraseña.

La función main() genera una contraseña aleatoria y la guarda de forma segura llamando a la función save_password.

Por último, el bloque if name == 'main': en la parte inferior del código asegura que la función main() solo se ejecuta cuando el código se ejecuta directamente (y no cuando se importa como un módulo en otro script).

About

Password generator that stores in encrypted file

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages