Merge pull request #3104 from lioncash/xts
xts_archive: Remove redundant std::string constructor
This commit is contained in:
commit
ebb30cbefb
1 changed files with 1 additions and 2 deletions
|
@ -93,8 +93,7 @@ Loader::ResultStatus NAX::Parse(std::string_view path) {
|
||||||
std::size_t i = 0;
|
std::size_t i = 0;
|
||||||
for (; i < sd_keys.size(); ++i) {
|
for (; i < sd_keys.size(); ++i) {
|
||||||
std::array<Core::Crypto::Key128, 2> nax_keys{};
|
std::array<Core::Crypto::Key128, 2> nax_keys{};
|
||||||
if (!CalculateHMAC256(nax_keys.data(), sd_keys[i].data(), 0x10, std::string(path).c_str(),
|
if (!CalculateHMAC256(nax_keys.data(), sd_keys[i].data(), 0x10, path.data(), path.size())) {
|
||||||
path.size())) {
|
|
||||||
return Loader::ResultStatus::ErrorNAXKeyHMACFailed;
|
return Loader::ResultStatus::ErrorNAXKeyHMACFailed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue