reformatting the hash

MSP-10658
This commit is contained in:
Lance Sanchez 2014-07-08 10:58:51 -05:00
parent 38419dae83
commit e6f13f6607
1 changed files with 7 additions and 1 deletions

View File

@ -13,7 +13,13 @@ module Metasploit::Credential::Core::ToCredential
else
private_type = nil
end
Metasploit::Framework::Credential.new(public: public.try(:username), private: private.try(:data), private_type: private_type, realm: realm.try(:value), realm_key: realm.try(:key) )
Metasploit::Framework::Credential.new(
public: public.try(:username),
private: private.try(:data),
private_type: private_type,
realm: realm.try(:value),
realm_key: realm.try(:key)
)
end
end