Sha256: 0735d927170207f2f7beda856c4e723faf0fc16619ebc772cb875ef056bbec5c

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 KB

Contents

=begin

= File
	filters/crypt.rb

= Info
	This file is part of Origami, PDF manipulation framework for Ruby
	Copyright (C) 2010	Guillaume Delugré <guillaume@security-labs.org>
	All right reserved.
	
  Origami is free software: you can redistribute it and/or modify
  it under the terms of the GNU Lesser General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  Origami is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public License
  along with Origami.  If not, see <http://www.gnu.org/licenses/>.

=end

module Origami

  module Filter

    #
    # Class representing a Crypt Filter.
    # TODO.
    #
    class Crypt
      include Filter

      class DecodeParms < Dictionary
        include StandardObject

        field   :Type,      :Type => Name, :Default => :Crypt
        field   :Name,      :Type => Name, :Default => :Identity
      end
    end
    
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
origami-1.2.4 lib/origami/filters/crypt.rb
origami-1.2.3 lib/origami/filters/crypt.rb
origami-1.2.2 lib/origami/filters/crypt.rb
origami-1.2.1 origami/filters/crypt.rb
origami-1.2.0 origami/filters/crypt.rb
origami-1.1.2 origami/filters/crypt.rb
origami-1.1.1 origami/filters/crypt.rb
origami-1.0.4 origami/filters/crypt.rb
origami-1.0.3 origami/filters/crypt.rb
origami-1.0.2 origami/filters/crypt.rb