jpadilla / pyjwt

JSON Web Token implementation in Python
https://pyjwt.readthedocs.io
MIT License
5.18k stars 690 forks source link

Remove algorithm requirement for JWT API #975

Closed luhn closed 3 months ago

luhn commented 3 months ago

Followup on #886. Although I updated the JWS API, the JWT API independently requires a non-empty algorithms list. This PR just removes that enforcement entirely—We can rely on the JWS API to make sure an appropriate algorithms list is passed in.

luhn commented 3 months ago

Done.