I am working on a project about AES encryption with Ruby . The encryption libraries for Ruby get the data as string and start to encrypt it, e.g(http://ruby-doc.org/stdlib-2.0.0/libdoc/openssl/rdoc/OpenSSL/Cipher.html). However I have a byte array data like;
seed_V = [0x08,0x06,0x02,0x01,0x03,0x07,0x01]
I want to provide the data in bytes and encrypt like the way of Java or C# do ( Using AES encryption in C#) How can I do the same type of encryption in Ruby?