/**************************************************************************** * Copyright (C) 2016-2021 Maschell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . ****************************************************************************/ #include "Ticket.h" #include #include Ticket::Ticket(const std::array &pEncryptedKey, const std::array &pDecryptedKey) : ticketKeyEnc(pEncryptedKey), ticketKeyDec(pDecryptedKey) { } std::optional> Ticket::make_shared(const std::vector &data, std::optional> commonKey) { if (data.size() <= 0x1DC + 0x10) { DEBUG_FUNCTION_LINE("Not enough data to parse a ticket"); return {}; } std::array title_id{}; std::array decryptedKey{}; std::array encryptedKey{}; std::copy_n(data.begin() + 0x1BF, 0x10, decryptedKey.begin()); std::copy_n(data.begin() + 0x1BF, 0x10, encryptedKey.begin()); std::copy_n(data.begin() + 0x1DC, 0x10, title_id.begin()); uint8_t IV[0x10]; for (int i = 0; i < 8; i++) { IV[i] = title_id[i]; IV[i + 8] = 0x00; } if (commonKey.has_value()) { aes_set_key((uint8_t *) commonKey.value().data()); aes_decrypt(IV, encryptedKey.data(), decryptedKey.data(), 16); } return std::shared_ptr(new Ticket(encryptedKey, decryptedKey)); }