Sha256: 306a2dcbfa12f5cbfa0bd2f97f13cc212370bc906f5c8700d9b9de91a6d5e16a

Contents?: true

Size: 508 Bytes

Versions: 4

Compression:

Stored size: 508 Bytes

Contents

# Copyright (C) 2013 Dmitry Yakimenko (detunized@gmail.com).
# Licensed under the terms of the MIT license. See LICENCE for details.

module LastPass
    class Session
        attr_reader :id,
                    :key_iteration_count,
                    :encrypted_private_key

        def initialize id, key_iteration_count, encrypted_private_key
            @id = id
            @key_iteration_count = key_iteration_count
            @encrypted_private_key = encrypted_private_key
        end
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
lastpass-1.7.1 lib/lastpass/session.rb
lastpass-1.7.0 lib/lastpass/session.rb
lastpass-1.6.1 lib/lastpass/session.rb
lastpass-1.6.0 lib/lastpass/session.rb