Skip to content

R0FGV/password

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Password Generator

                                                  _
 _ __    __ _  ___  ___ __      __ ___   _ __  __| |
| '_ \  / _` |/ __|/ __|\ \ /\ / // _ \ | '__|/ _` |
| |_) || (_| |\__ \\__ \ \ V  V /| (_) || |  | (_| |
| .__/  \__,_||___/|___/  \_/\_/  \___/ |_|   \__,_|
|_|

Algorithm

  1. hmac(key, sha512(email)+web, sha512) ---> hex string.
  2. hex string ---> binary array (7bit for each group, use leading zero to keep binary's width is 512bits).
  3. Convert element in binary array to ASCII character in range(DECIMAL 33 to DECIMAL 126).
  4. Generate 15*5 matrix and choose your password according to your own order.

More

https://www.v2ex.com/t/331896

About

Password Generator (密码管理工具)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 86.7%
  • Python 13.3%