2012-06-29 00:18:28 -05:00
|
|
|
# -*- coding: binary -*-
|
2005-05-23 00:34:16 +00:00
|
|
|
|
2005-07-09 21:18:49 +00:00
|
|
|
require 'rex/encoding/xor/generic'
|
2005-05-24 03:58:47 +00:00
|
|
|
|
2005-05-23 00:34:16 +00:00
|
|
|
module Rex
|
|
|
|
|
module Encoding
|
|
|
|
|
module Xor
|
|
|
|
|
|
|
|
|
|
class Byte < Generic
|
|
|
|
|
|
2013-08-30 16:28:33 -05:00
|
|
|
def Byte.keysize
|
|
|
|
|
1
|
|
|
|
|
end
|
2005-05-23 00:34:16 +00:00
|
|
|
|
2012-04-15 23:35:38 -05:00
|
|
|
end end end end # Byte/Xor/Encoding/Rex
|