We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using my own function works but it crash with github-webhook-handler, my own function
const createComparisonSignature = (body) => { const hmac = crypto.createHmac('sha1', process.env.GITHUB_SECRET); const self_signature = hmac.update(JSON.stringify(body)).digest('hex'); return `sha1=${self_signature}`; // shape in GitHub header } const compareSignatures = (signature, comparison_signature) => { const source = Buffer.from(signature); const comparison = Buffer.from(comparison_signature); return crypto.timingSafeEqual(source, comparison); // constant time comparison } const { headers, body } = req; const signature = headers['x-hub-signature']; const comparison_signature = createComparisonSignature(req.body); if (!compareSignatures(signature, comparison_signature)) { return res.status(401).send('Mismatched signatures'); } else { console.log("signature match") const { action, ...payload } = body; req.event_type = headers['x-github-event']; // one of: https://developer.github.com/v3/activity/events/types/ req.action = action; req.payload = payload; next(); } return next()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
using my own function works but it crash with github-webhook-handler, my own function
The text was updated successfully, but these errors were encountered: