File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 2.16.0
2+
3+ - Add support of PEM parsing for EdDSA keys with ` EdDSAPrivateKey.fromPem ` and ` EdDSAPublicKey.fromPem `
4+
15## 2.15.0
26
37- Added support for PSS alogrithm varations (https://github.com/jonasroussel/dart_jsonwebtoken/pull/59 )
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2024 Jonas Roussel
3+ Copyright (c) 2025 Jonas Roussel
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 11name : dart_jsonwebtoken
22description : A dart implementation of the famous javascript library 'jsonwebtoken' (JWT).
3- version : 2.15 .0
3+ version : 2.16 .0
44repository : https://github.com/jonasroussel/dart_jsonwebtoken
55homepage : https://github.com/jonasroussel/dart_jsonwebtoken#readme
66
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ MCowBQYDK2VwAyEAEi7MNW0Q9T83UA3Rw+8DbspMgqeuxCqa2wXaWS+tHqY=
2525
2626void main () {
2727 group ('Verify a JWT' , () {
28+ //--------//
29+ // Claims //
30+ //--------//
2831 group ('Claims' , () {
2932 group ('iat' , () {
3033 final oneMinuteAgo = DateTime .now ().subtract (Duration (minutes: 1 ));
@@ -81,6 +84,7 @@ void main() {
8184 });
8285 });
8386 });
87+
8488 //------//
8589 // HMAC //
8690 //------//
You can’t perform that action at this time.
0 commit comments