Skip to content

Instantly share code, notes, and snippets.

View tarmotalu's full-sized avatar

Tarmo Talu tarmotalu

  • WiseSoft OÜ
  • Estonia
View GitHub Profile
@tarmotalu
tarmotalu / gist:9895655
Created March 31, 2014 16:01
Capistrano 3 deploy confirmation
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
========================================================================
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