rot13 加密算法

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

class String
  def rot13
    self.tr "A-Za-z", "N-ZA-Mn-za-m"
  end
end

#用法 : print 'abcd'.rot13