Skip to content

Commit fe7f93c

Browse files
committed
v2.16.0
1 parent b843d93 commit fe7f93c

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Jonas Roussel
3+
Copyright (c) 2025 Jonas Roussel
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_jsonwebtoken
22
description: A dart implementation of the famous javascript library 'jsonwebtoken' (JWT).
3-
version: 2.15.0
3+
version: 2.16.0
44
repository: https://github.com/jonasroussel/dart_jsonwebtoken
55
homepage: https://github.com/jonasroussel/dart_jsonwebtoken#readme
66

test/verify_test.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ MCowBQYDK2VwAyEAEi7MNW0Q9T83UA3Rw+8DbspMgqeuxCqa2wXaWS+tHqY=
2525

2626
void 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
//------//

0 commit comments

Comments
 (0)