class Zip::NullEncrypter

Public Instance Methods

data_descriptor(crc32, compressed_size, uncomprssed_size) click to toggle source
# File lib/zip/crypto/null_encryption.rb, line 23
def data_descriptor(crc32, compressed_size, uncomprssed_size)
  ''
end
encrypt(data) click to toggle source
# File lib/zip/crypto/null_encryption.rb, line 19
def encrypt(data)
  data
end
header(mtime) click to toggle source
# File lib/zip/crypto/null_encryption.rb, line 15
def header(mtime)
  ''
end
reset!() click to toggle source
# File lib/zip/crypto/null_encryption.rb, line 27
def reset!
end