Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/brownred/password-generator
- Owner: Brownred
- Created: 2022-09-04T15:12:32.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T08:54:47.000Z (about 2 years ago)
- Last Synced: 2024-01-23T21:51:47.961Z (12 months ago)
- Topics: pyhton3
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.cExample 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.