Sha256: c0a3d479318f77450ae655aa022d63bee669fafd0da85c5536b4584755f448be
Contents?: true
Size: 413 Bytes
Versions: 23
Compression:
Stored size: 413 Bytes
Contents
# -*- coding: binary -*- require 'rex/encoding/xor/generic' # # Routine for xor encoding a buffer by a 2-byte (intel word) key. The perl # version used to pad this buffer out to a 2-byte boundary, but I can't think # of a good reason to do that anymore, so this doesn't. # module Rex module Encoding module Xor class Dword < Generic def Dword.keysize 4 end end end end end # Dword/Xor/Encoding/Rex
Version data entries
23 entries across 23 versions & 4 rubygems