Module: Envcrypt

Defined in:
lib/envcrypt/envcrypt.rb,
lib/envcrypt/version.rb

Overview

Public: Envcrypt module contains all of the methods/classes to perform encryption and decryption of passwords

Examples

mypassword = "secret"
crypt = Envcrypter.new
encrypted_pwd = crypt.encrypt(mypassword)
decrypted_pwd = crypt.decrypt(encrypted_pwd)

Defined Under Namespace

Classes: Envcrypter

Constant Summary collapse

VERSION =
"0.1.0"