「Ruby入門」rubyでaesを実現するプログラム
rubyコード:
#gem install fast-aes
require 'rubygems’
require 'fast-aes’
# key can be 128, 192, or 256 bits
key = ’42#3b%c$dxyT,7a5=+5fUI3fa7352&^:’
aes = FastAES.new(key)
text = “お元気ですか?"
data = aes.encrypt(text)
puts aes.decrypt(data) # “お元気ですか?"