lib/trocla/encryptions/ssl.rb in trocla-0.4.0 vs lib/trocla/encryptions/ssl.rb in trocla-0.5.0

- old
+ new

@@ -3,11 +3,11 @@ class Trocla::Encryptions::Ssl < Trocla::Encryptions::Base def encrypt(value) ciphertext = '' value.scan(/.{0,#{chunksize}}/m).each do |chunk| - ciphertext += Base64.encode64(public_key.public_encrypt(chunk)).gsub("\n",'')+"\n" if chunk + ciphertext += Base64.encode64(public_key.public_encrypt(chunk)).gsub("\n", '') + "\n" if chunk end ciphertext end def decrypt(value) @@ -19,33 +19,33 @@ end private def chunksize - public_key.n.num_bytes - 11 + public_key.n.num_bytes - 11 end def private_key - @private_key ||= begin - file = require_option(:private_key) - OpenSSL::PKey::RSA.new(File.read(file), nil) - end + @private_key ||= begin + file = require_option(:private_key) + OpenSSL::PKey::RSA.new(File.read(file), nil) + end end def public_key - @public_key ||= begin - file = require_option(:public_key) - OpenSSL::PKey::RSA.new(File.read(file), nil) - end + @public_key ||= begin + file = require_option(:public_key) + OpenSSL::PKey::RSA.new(File.read(file), nil) + end end def option(key) config[key] end def require_option(key) val = option(key) raise "Config error: 'ssl_options' => :#{key} is not defined" if val.nil? + val end end -