Sha256: fb03465feba539de562ae7be187d6fd06dd952161680fe6d6b4027277b440746
Contents?: true
Size: 400 Bytes
Versions: 43
Compression:
Stored size: 400 Bytes
Contents
#!/usr/bin/env ruby 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 Word < Generic def Word.keysize 2 end end end end end # Word/Xor/Encoding/Rex
Version data entries
43 entries across 43 versions & 1 rubygems