summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/es/es.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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-251-0/+57
Adds the skeleton for the ETicket service based off the information on Switch Brew