Method: SecureConf::Encrypter#decrypt

Defined in:
lib/secure_conf/encrypter.rb

#decrypt(str) ⇒ Object



41
42
43
# File 'lib/secure_conf/encrypter.rb', line 41

def decrypt(str)
  @pkey.private_decrypt(Base64.strict_decode64(str))
end