GithubHelp home page GithubHelp logo

rootlyhq / passw Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sn/passw

0.0 0.0 0.0 27 KB

Passw is a simple, customizable password generator for Ruby

Home Page: https://rubygems.org/gems/passw

License: GNU General Public License v3.0

Ruby 100.00%

passw's Introduction

Easy & secure password generation for Ruby

A Ruby Gem that allows you to generate secure passwords programmatically or via the terminal.

Requirements

It's recommend that you use Ruby 2.0.0 or higher.

Installation

gem install passw

Or add it to your Gemfile:

gem 'passw'

Getting Started

require 'passw'

Passw.generate(12) # => ^IUH91234la*

Available Options

Passw supports the following options and combinations of them:

  • :lowercase
  • :uppercase
  • :symbols
  • :numbers
  • :duplicates

Examples

# Generate a secure password of 12 characters in length
Passw.generate(12)

# Output => `|vwr8j5VV8W

# Options available for the password generation
Passw.generate(12, {
  lowercase:  true,  # Allow lower case characters
  uppercase:  true,  # Allow uppercase characters
  symbols:    true,  # Allow symbols
  numbers:    true,  # Allow numbers 
  duplicates: false  # Allow characters to be duplicated (less secure if true)	
})

# Output => qU.b"fo+P>Wl

Executable

This gem also includes an executable that can be called directly from the terminal:

passw <password length>

Running the tests

To test the current stable version of passw, run:

rake test

License

Please see LICENSE for licensing details.

Author

github.com/sn

passw's People

Contributors

sn avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.