f124597a56
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
19 lines
278 B
Ruby
19 lines
278 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
#
|
|
# make sure the namespace is created
|
|
#
|
|
|
|
module Rex
|
|
module Encoding
|
|
module Xor
|
|
end end end
|
|
|
|
#
|
|
# include the Xor encodings
|
|
#
|
|
|
|
require 'rex/encoding/xor/generic'
|
|
require 'rex/encoding/xor/byte'
|
|
require 'rex/encoding/xor/word'
|
|
require 'rex/encoding/xor/dword' |