# File lib/prawn/arcfour.rb, line 38
  def encrypt(string)
    string.unpack('c*').map{|byte| byte ^ key_byte}.pack('c*')
  end