We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fc22b9 commit ed5737fCopy full SHA for ed5737f
plugins/push/api/send/platforms/i.js
@@ -298,7 +298,8 @@ const CREDS = {
298
return ['Not a private key in P8 format in base64-encoded string'];
299
}
300
301
- this._data.hash = FORGE.md.sha256.create().update(this._data.key).digest().toHex();
+ const message = this._data.key + this._data.bundle + this._data.keyid + this._data.team;
302
+ this._data.hash = FORGE.md.sha256.create().update(message).digest().toHex();
303
304
305
/**
0 commit comments