metasploit-framework/lib/rex/encoding/xor/qword.rb

17 lines
189 B
Ruby

#!/usr/bin/env ruby
# -*- coding: binary -*-
require 'rex/encoding/xor/generic'
module Rex
module Encoding
module Xor
class Qword < Generic
def Qword.keysize
8
end
end end end end