共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > passmakr |
passmakr
|
0 | 0 | 2 |
贡献者 | 讨论 | 代码提交 |
A simple Ruby Library to create passwords that are pseudo random, really random (based on /dev/urandom) and phonemic.
A CLI tool is included to demonstrate the use of the library.
A simple use case for this library could be:
require 'passmakr'
require 'pp'
pw = Passmakr.new(:phonemic, 8)
pp pw.password{:rot13=>"trrtrrFb",
:crypt=>"qmRSIJG2fy7Yg",
:string=>"geegeeSo",
:nato=>"golf echo echo golf echo echo Sierra oscar",
:md5=>"$1$NwZQhCce$sBvOWjLEVOjSyp89HORcv/"}This library include code from http://www.caliban.org/ruby/ruby-password.shtml for some of it's functionality.