summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/es (follow)
Commit message (Collapse)AuthorAgeFilesLines
* service: Update function tablesLioncash2019-11-121-0/+2
| | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* Services::ES fix casting warningsFreddyFunk2019-09-291-6/+6
|
* key_manager: Convert Ticket union to std::variantZach Hilman2019-07-081-2/+2
|
* es: Populate/synthesize tickets on constructionZach Hilman2019-07-081-2/+3
|
* key_manager: Add structure for Ticket parsingZach Hilman2019-07-081-9/+9
|
* es: Implement ETicket GetPersonalizedTicketData (17)Zach Hilman2019-07-081-1/+21
| | | Copies the raw personal ticket data into the buffer provided.
* es: Implement ETicket GetCommonTicketData (16)Zach Hilman2019-07-081-1/+20
| | | Copies the raw common ticket data for the specified rights ID into the buffer provided.
* es: Implement ETicket GetPersonalizedTicketSize (15)Zach Hilman2019-07-081-1/+17
| | | Returns the size of the buffer needed to hold the personal ticket associated with the rights ID.
* es: Implement ETicket GetCommonTicketSize (14)Zach Hilman2019-07-081-1/+17
| | | Returns the size of the buffer needed to hold the common ticket associated with the rights ID.
* es: Implement ETicket ListPersonalizedTicket (12)Zach Hilman2019-07-081-1/+24
| | | Returns an application-specific number of entries of personal tickets, starting at offset 0.
* es: Implement ETicket ListCommonTicket (11)Zach Hilman2019-07-081-1/+24
| | | Returns an application specified count of entries of common tickets, starting at offset 0.
* es: Implement ETicket CountPersonalizedTicket (10)Zach Hilman2019-07-081-1/+12
| | | Returns the number of personalized (console/user-unique) tickets in the KeyManager.
* es: Implement ETicket CountCommonTicket (9)Zach Hilman2019-07-081-1/+12
| | | Returns the number of common (non-console-unique) tickets in the KeyManager.
* es: Implement ETicket GetTitleKey (8)Zach Hilman2019-07-081-1/+27
| | | Takes a rights ID as input and returns the associated title key, if it exists.
* es: Implement ETicket ImportTicket (1)Zach Hilman2019-07-081-1/+45
| | | Takes a ticket and certificate and installs it to the KeyManager.
* es: Update service function tablesLioncash2018-10-191-7/+11
| | | | Updated based off information provided by Switchbrew.
* service: Add the es serviceLioncash2018-07-252-0/+73
Adds the skeleton for the ETicket service based off the information on Switch Brew