Files
metasploit-gs/lib/rex/encoding/xor/qword.rb
T
2013-11-07 18:51:59 -05:00

16 lines
173 B
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