Browse Source

Added function 'get_encrypted_app_ticket'

Added function. Full further support is already there. Function runs the existing but unused proto
pull/287/head
PinkDraconian 5 years ago
committed by Rossen
parent
commit
2267f9cc2a
  1. 14
      steam/client/builtins/apps.py

14
steam/client/builtins/apps.py

@ -149,6 +149,20 @@ class Apps(object):
timeout=10
)
def get_encrypted_app_ticket(self, app_id, userdata):
"""Gets the encrypted app ticket
:param app_id: app id
:type app_id: :class:`int`
:param userdata: userdata
:type userdata: :class:`bytes`
:return: `EncryptedAppTicket <https://github.com/ValvePython/steam/blob/39627fe883feeed2206016bacd92cf0e4580ead6/protobufs/encrypted_app_ticket.proto>_`
:rtype: proto message
"""
return self.send_job_and_wait(MsgProto(EMsg.ClientRequestEncryptedAppTicket),
{'app_id': app_id, 'userdata': userdata},
timeout=10
)
def get_depot_key(self, app_id, depot_id):
"""Get depot decryption key

Loading…
Cancel
Save