2005-12-17 06:46:23 +00:00
|
|
|
#!/usr/bin/env ruby
|
2005-05-24 03:58:47 +00:00
|
|
|
|
2005-06-09 06:18:27 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', '..', '..'))
|
2005-05-24 03:58:47 +00:00
|
|
|
|
2005-07-09 21:57:37 +00:00
|
|
|
require 'rex/encoding/xor/dword'
|
2005-07-09 21:18:49 +00:00
|
|
|
require 'rex/encoding/xor/byte.rb.ut'
|
2005-05-24 03:58:47 +00:00
|
|
|
|
2005-06-08 21:39:12 +00:00
|
|
|
module Rex::Encoding::Xor
|
2005-07-09 21:57:37 +00:00
|
|
|
class Dword::UnitTest < Byte::UnitTest
|
2005-05-24 03:58:47 +00:00
|
|
|
|
|
|
|
def enc
|
2005-07-09 21:57:37 +00:00
|
|
|
Dword
|
2005-05-24 03:58:47 +00:00
|
|
|
end
|
|
|
|
end
|
2005-06-08 21:39:12 +00:00
|
|
|
end
|