mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-10 11:40:16 +08:00
jsonwebtoken - Updated SignCallback to match functionality correctly.
This commit is contained in:
@@ -24,6 +24,11 @@ token = jwt.sign({ foo: 'bar' }, 'shhhhh');
|
||||
cert = fs.readFileSync('private.key'); // get private key
|
||||
token = jwt.sign({ foo: 'bar' }, cert, { algorithm: 'RS256'});
|
||||
|
||||
// sign asynchronously
|
||||
jwt.sign({ foo: 'bar' }, cert, { algorithm: 'RS256' }, function(token: string) {
|
||||
console.log(token);
|
||||
});
|
||||
|
||||
/**
|
||||
* jwt.verify
|
||||
* https://github.com/auth0/node-jsonwebtoken#jwtverifytoken-secretorpublickey-options-callback
|
||||
|
||||
Reference in New Issue
Block a user