File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changes for Crypt-JWT distribution
2
2
3
+ 0.037 2025-01-26
4
+ - fix #43 Fails to decode JWT from AWS Application Load Balancers
5
+ - fix #44 Allow decoding JWS with Base64 padding characters
6
+ - added tolerate_padding parameter for decode_jwt
7
+
3
8
0.036 2025-01-26
4
9
- fix #35 support aud claim as an array of strings
5
10
- added verify_typ - verify 'typ' header parameter
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Crypt::JWT;
3
3
use strict;
4
4
use warnings;
5
5
6
- our $VERSION = ' 0.036 ' ;
6
+ our $VERSION = ' 0.037 ' ;
7
7
8
8
use Exporter ' import' ;
9
9
our %EXPORT_TAGS = ( all => [qw( decode_jwt encode_jwt) ] );
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Crypt::KeyWrap;
3
3
use strict;
4
4
use warnings;
5
5
6
- our $VERSION = ' 0.036 ' ;
6
+ our $VERSION = ' 0.037 ' ;
7
7
8
8
use Exporter ' import' ;
9
9
our %EXPORT_TAGS = ( all => [qw( aes_key_wrap aes_key_unwrap gcm_key_wrap gcm_key_unwrap pbes2_key_wrap pbes2_key_unwrap ecdh_key_wrap ecdh_key_unwrap ecdhaes_key_wrap ecdhaes_key_unwrap rsa_key_wrap rsa_key_unwrap) ] );
You can’t perform that action at this time.
0 commit comments