Low commit activity in last 3 years
No release in over a year
dynarex-password
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.10, >= 1.10.0
 Project Readme

#Introducing the Dynarex-password gem

Generate a Dynarex password lookup file and use it to make strong passwords from weak passwords.

In the following example a password lookup file is generated using random 1 or 2 alphanumeric digits associated with each literals a-z, A-Z, and 0-9.

require 'dynarex-password'

dp = DynarexPassword.new
dp.generate_lookup
dp.save 'lookup.xml'

dp = DynarexPassword.new
dp.lookup('apple', 'lookup.xml') #=> "lEtEtqcD" 

Note: Make sure you keep your password lookup file private.