This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :deploy do | |
task :confirmation do | |
puts <<-WARN | |
======================================================================== | |
WARNING: You're about to perform actions on production server(s) | |
Please confirm that all your intentions are kind and friendly | |
======================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl' | |
require 'base64' | |
require 'digest/sha1' | |
c = OpenSSL::Cipher::Cipher.new("aes-128-cbc") | |
c.encrypt | |
# your pass is what is used to encrypt/decrypt | |
c.key = key = Digest::SHA1.hexdigest("whatever") | |
# c.iv = iv = c.random_iv | |
e = c.update("190") | |
e << c.final |