Loi Nguyen
Loi Nguyen
I search everywhere on the internet but not found a runnable gem to create audit log. Almost audit work with activeadmin, SQL while Mongo I found nothing. I try mongoid-history,...
Regarding to the issue https://github.com/chicks/aes/issues/17 Error in Ruby 2.5.3, set cipher.key: Exception “key must be 16 bytes" OpenSSL::Cipher.new('AES-128-CBC') only accept key with length is 16 bytes. While in the code,...
``` def _setup(action) @cipher ||= OpenSSL::Cipher.new(@options[:cipher]) # Toggles encryption mode @cipher.send(action) @cipher.padding = @options[:padding] @cipher.key = @key.unpack('a2'*32).map{|x| x.hex}.pack('c'*32) end ``` When i upgrade to ruby 2.5.3, OpenSSL::Cipher required key length...