Open
Description
The payload verification is currently implemented using node's built-in crypto
module:
Lines 17 to 19 in 06310d7
But all modern JS run time environments now have the global crypto
API which is WebCrypto - including Node.js.
For compatibility with @octokit which aims to be as universal as possible, we should implement that method using WebCrypto.
Activity