lib/lastpass/session.rb in lastpass-1.5.0 vs lib/lastpass/session.rb in lastpass-1.6.0

- old
+ new

@@ -2,13 +2,15 @@ # Licensed under the terms of the MIT license. See LICENCE for details. module LastPass class Session attr_reader :id, - :key_iteration_count + :key_iteration_count, + :encrypted_private_key - def initialize id, key_iteration_count + 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