Sha256: 7e6dffba4b86eb1217141e7e53403b7f0f2884ebfd5ae9bed791acdb9bad4fd8
Contents?: true
Size: 426 Bytes
Versions: 2
Compression:
Stored size: 426 Bytes
Contents
#!/usr/bin/env ruby # -*- 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 Word < Generic def Word.keysize 2 end end end end end # Word/Xor/Encoding/Rex
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
librex-0.0.68 | lib/rex/encoding/xor/word.rb |
librex-0.0.66 | lib/rex/encoding/xor/word.rb |