Sha256: 0262636ff50c72751f7110a195d89d6a510b25445bea0c603c209b4d400fdafc
Contents?: true
Size: 1.13 KB
Versions: 9
Compression:
Stored size: 1.13 KB
Contents
require 'crypt_keeper/log_subscriber/mysql_aes' module CryptKeeper module Provider class MysqlAesNew include CryptKeeper::Helper::SQL include CryptKeeper::Helper::DigestPassphrase attr_accessor :key # Public: Initializes the encryptor # # options - A hash, :key and :salt are required def initialize(options = {}) ActiveSupport.run_load_hooks(:crypt_keeper_mysql_aes_log, self) @key = digest_passphrase(options[:key], options[:salt]) end # Public: Encrypts a string # # Returns an encrypted string def encrypt(value) Base64.encode64 escape_and_execute_sql( ["SELECT AES_ENCRYPT(?, ?)", value, key]).first end # Public: Decrypts a string # # Returns a plaintext string def decrypt(value) escape_and_execute_sql( ["SELECT AES_DECRYPT(?, ?)", Base64.decode64(value), key]).first end # Public: Searches the table # # Returns an Enumerable def search(records, field, criteria) records.where(field.to_sym => encrypt(criteria)) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems