16 lines
195 B
Ruby
16 lines
195 B
Ruby
# -*- coding: binary -*-
|
|
|
|
require 'rex/encoding/xor/generic'
|
|
|
|
module Rex
|
|
module Encoding
|
|
module Xor
|
|
|
|
class Byte < Generic
|
|
|
|
def Byte.keysize
|
|
1
|
|
end
|
|
|
|
end end end end # Byte/Xor/Encoding/Rex
|