]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from lib/redmine/ciphering.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 00:48:43 +0000 (00:48 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 00:48:43 +0000 (00:48 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6944 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/ciphering.rb

index 8efe37c295291e6f6abbba4c9d3f91bf46f58e12..2fb2dca860daf8ec031eb8b04e519439553d8676 100644 (file)
 
 module Redmine
   module Ciphering
-    def self.included(base) 
+    def self.included(base)
       base.extend ClassMethods
     end
-    
+
     class << self
       def encrypt_text(text)
         if cipher_key.blank?
@@ -36,7 +36,7 @@ module Redmine
           "aes-256-cbc:" + [e, iv].map {|v| Base64.encode64(v).strip}.join('--')
         end
       end
-      
+
       def decrypt_text(text)
         if text && match = text.match(/\Aaes-256-cbc:(.+)\Z/)
           text = match[1]
@@ -51,13 +51,13 @@ module Redmine
           text
         end
       end
-      
+
       def cipher_key
         key = Redmine::Configuration['database_cipher_key'].to_s
         key.blank? ? nil : Digest::SHA256.hexdigest(key)
       end
     end
-  
+
     module ClassMethods
       def encrypt_all(attribute)
         transaction do
@@ -68,7 +68,7 @@ module Redmine
           end
         end ? true : false
       end
-      
+
       def decrypt_all(attribute)
         transaction do
           all.each do |object|
@@ -79,14 +79,14 @@ module Redmine
         end
       end ? true : false
     end
-    
+
     private
-    
+
     # Returns the value of the given ciphered attribute
     def read_ciphered_attribute(attribute)
       Redmine::Ciphering.decrypt_text(read_attribute(attribute))
     end
-    
+
     # Sets the value of the given ciphered attribute
     def write_ciphered_attribute(attribute, value)
       write_attribute(attribute, Redmine::Ciphering.encrypt_text(value))