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