pgjwt
pgjwt copied to clipboard
PostgreSQL implementation of JWT (JSON Web Tokens)
Hi guys. I took a look at this file in the title in the latest version of PGJWT and am trying to determine if an upgrade is needed. I reviewed...
It would be great if this extension was available on https://pgxn.org/
Error installing pgjwt 0.2.0 the extension on PostgreSQL 9.6 ``` postgres=# CREATE EXTENSION pgjwt; ERROR: required extension "pgcrypto" is not installed HINT: Use CREATE EXTENSION ... CASCADE to install required...
Im excited to make use of pgjwt in our applications but I'd like to be able to be more informative regarding invalidation of a jwt. The invalid exceptions in JWT...
Would be good to have a tagged release.
As I am working on [postgres.pm](postgres.pm) and integrating [pgjwt](https://github.com/postgres-pm/pgpm/blob/master/packages/pgjwt.rb), it would be great to have tagged versions in git because pgpm can infer versions from these, including new versions, significantly...
For signing short-lived JWTs to clients using a private server-side key of which the public key is shared with another service that clients shall access, it would be really helpful...
The function `algorithm_sign(signables text, secret text, algorithm text)` incorrectly has the following line: ```sql SELECT @[email protected]_encode(@[email protected](signables, secret, alg.id)) FROM alg; ``` Because the `hmac` function is qualified with `@extschema@`, which...