1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# frozen_string_literal: true
module Zip
module NullEncryption # :nodoc:
def header_bytesize
0
end
def gp_flags
0
end
end
class NullEncrypter < Encrypter # :nodoc:
include NullEncryption
def header(_mtime)
''
end
def encrypt(data)
data
end
def data_descriptor(_crc32, _compressed_size, _uncompressed_size)
''
end
def reset!; end
end
end
# Copyright (C) 2002, 2003 Thomas Sondergaard
# rubyzip is free software; you can redistribute it and/or
# modify it under the terms of the ruby license.
|