Skip to content
Extraits de code Groupes Projets
encryptor.rb 1,78 ko
Newer Older
  • Learn to ignore specific revisions
  • danielgrippi's avatar
    danielgrippi a validé
    #   Copyright (c) 2010-2011, Diaspora Inc.  This file is
    
    Raphael's avatar
    Raphael a validé
    #   licensed under the Affero General Public License version 3 or later.  See
    
    Raphael's avatar
    Raphael a validé
    #   the COPYRIGHT file.
    
    Raphael's avatar
    Raphael a validé
    module Encryptor
      module Public
        def encrypt cleartext
          aes_key = gen_aes_key
          ciphertext = aes_encrypt(cleartext, aes_key)
          encrypted_key = encrypt_aes_key aes_key
          cipher_hash = {:aes_key => encrypted_key, :ciphertext => ciphertext}
    
    Maxwell Salzberg's avatar
    Maxwell Salzberg a validé
          Base64.strict_encode64( cipher_hash.to_json )
    
    Raphael's avatar
    Raphael a validé
        end
    
        def gen_aes_key
          cipher = OpenSSL::Cipher.new('AES-256-CBC')
          key = cipher.random_key
          iv = cipher.random_iv
    
    Maxwell Salzberg's avatar
    Maxwell Salzberg a validé
          {'key' => Base64.strict_encode64(key), 'iv' => Base64.strict_encode64(iv)}
    
    Raphael's avatar
    Raphael a validé
        end
    
        def aes_encrypt(txt, key)
          cipher = OpenSSL::Cipher.new('AES-256-CBC')
          cipher.encrypt
          cipher.key = Base64.decode64 key['key']
          cipher.iv  = Base64.decode64 key['iv']
          ciphertext = ''
          ciphertext << cipher.update(txt)
          ciphertext << cipher.final
    
    Maxwell Salzberg's avatar
    Maxwell Salzberg a validé
          Base64.strict_encode64(ciphertext)
    
    Raphael's avatar
    Raphael a validé
        end
    
        def encrypt_aes_key key
    
    Maxwell Salzberg's avatar
    Maxwell Salzberg a validé
          Base64.strict_encode64(public_key.public_encrypt( key.to_json ))
    
    Raphael's avatar
    Raphael a validé
        end
      end
    
      module Private
        def decrypt cipher_json
          json = JSON.parse(Base64.decode64 cipher_json)
          aes_key = get_aes_key json['aes_key']
          aes_decrypt(json['ciphertext'], aes_key)
        end
    
        def get_aes_key encrypted_key
          clear_key = encryption_key.private_decrypt( Base64.decode64 encrypted_key )
          JSON::parse(clear_key)
        end
    
        def aes_decrypt(ciphertext, key)
          cipher = OpenSSL::Cipher.new('AES-256-CBC')
          cipher.decrypt
          cipher.key = Base64.decode64 key['key']
          cipher.iv  = Base64.decode64 key['iv']
          txt = ''
          txt << cipher.update(Base64.decode64 ciphertext)
          txt << cipher.final
          txt
        end
    
      end
    end