以前发过 PS3 更新下载器,但是需要下载软件,有没有更简单的呢?
直接复制下面链接替换掉 titleID
https://a0.ww.np.dl.playstation.net/tpl/np/titleID/titleID-ver.xml
来个例子:
https://a0.ww.np.dl.playstation.net/tpl/np/NPJB00611/NPJB00611-ver.xml
更新:这个方法 PSP 游戏也适用
PSV 就比较麻烦一点,需要用代码计算,下面是 js 脚本,不熟悉 js 可以用 ai 重写成其他脚本语言
const crypto = require('crypto');
const getPSVUpdateXml = (titleID, hmacKey) => {
const binary = [];
const key = `0x${hmacKey}`;
for (let i = 2; i < key.length; i += 2) {
const s = key.substring(i, i + 2);
binary.push(parseInt(s, 16));
}
const hmac = crypto.createHmac('sha256', Buffer.from(binary));
const byteHash = hmac.update(`np_${titleID}`).digest();
const hash = Array.from(byteHash)
.map(b => b.toString(16).padStart(2, '0'))
.join('')
.toLowerCase();
return `http://gs-sec.ww.np.dl.playstation.net/pl/np/${titleID}/${hash}/${titleID}-ver.xml`;
}
const titleID = 'PCSH00133';
const hmacKey = 'E5E278AA1EE34082A088279C83F9BBC806821C52F2AB5D2B4ABD995450355114';
console.log(getPSVUpdateXml(titleID, hmacKey));
上一篇:
NGC终极视频输出尾插,我就叫他GC-Triple pro max ultra吧下一篇:
咸鱼价值999元的进阶版N64改RGBS模组