module Envcrypt

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)

Constants

VERSION