Hi!
I'm using cipher filter plugin in my Logstash configuration and the only example I saw until now for the algorithm is aes-256-cbc and I'd like to use md5 or sha256. How is it possible?
Here is my configuration below:
cipher {
algorithm => "aes-256-cbc"
cipher_padding => 1
iv_random_length => 16
key => "KEY_OF_32_CHAR"
key_size => 32
mode => "encrypt"
source => "message"
target => "message_crypted"
base64 => true
max_cipher_reuse => 1
}