14 lines
141 B
Ruby
14 lines
141 B
Ruby
|
#!/usr/bin/ruby
|
||
|
|
||
|
module Rex
|
||
|
module Encoding
|
||
|
module Xor
|
||
|
|
||
|
class Byte < Generic
|
||
|
|
||
|
def keysize
|
||
|
1
|
||
|
end
|
||
|
|
||
|
end end end end # Byte/Xor/Encoding/Rex
|