Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brownred/password-generator

A more secure randomly generated values using the secrets library in python3.10, that is aids in creation of randomly generated passwords.
https://github.com/brownred/password-generator

pyhton3

Last synced: about 1 month ago
JSON representation

A more secure randomly generated values using the secrets library in python3.10, that is aids in creation of randomly generated passwords.

Awesome Lists containing this project

README

        

# Secrets Module in python

The secrets library is a library similar to the random library in python3.10 but way more secure.
Due to its high secure features it can thus be used to create randomly generated passwords, One-Time_passwords(OTP) e.t.c

Example scenario:
Generating a temporay password and send this password on a temporary hard-to-guess URL so the client can reset their password using this URL.

### steps
-Generate a ten-character alphanumeric password with atleast one lowercase character,
atleast one uppercase character, atleast one digits, and one special symbol.
-Generate a temporary URL.