1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
|
package Crypt::JWT;
use strict;
use warnings;
our $VERSION = '0.037';
use Exporter 'import';
our %EXPORT_TAGS = ( all => [qw(decode_jwt encode_jwt)] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw();
use Carp;
use Crypt::Misc qw(decode_b64u encode_b64u);
use JSON qw(decode_json encode_json);
use Crypt::PK::RSA;
use Crypt::PK::ECC;
use Crypt::PK::Ed25519;
use Crypt::PK::X25519;
use Crypt::PRNG qw(random_bytes);
use Crypt::KeyWrap ':all';
use Crypt::AuthEnc::GCM qw(gcm_encrypt_authenticate gcm_decrypt_verify);
use Crypt::Mac::HMAC qw(hmac);
use Compress::Raw::Zlib;
use Scalar::Util qw(looks_like_number);
# JWS: https://tools.ietf.org/html/rfc7515
# JWE: https://tools.ietf.org/html/rfc7516
# JWK: https://tools.ietf.org/html/rfc7517
# JWA: https://tools.ietf.org/html/rfc7518
# JWT: https://tools.ietf.org/html/rfc7519
# X25519/Ed25519 https://tools.ietf.org/html/rfc8037
sub _prepare_rsa_key {
my ($key) = @_;
croak "JWT: undefined RSA key" unless defined $key;
croak "JWT: invalid RSA key (cannot be scalar)" unless ref $key;
# we need Crypt::PK::RSA object
return $key if ref($key) eq 'Crypt::PK::RSA';
return Crypt::PK::RSA->new($key) if ref($key) eq 'HASH' || ref($key) eq 'SCALAR';
return Crypt::PK::RSA->new(@$key) if ref($key) eq 'ARRAY';
# handle also: Crypt::OpenSSL::RSA, Crypt::X509, Crypt::OpenSSL::X509
my $str;
if (ref($key) eq 'Crypt::OpenSSL::RSA') {
# https://metacpan.org/pod/Crypt::OpenSSL::RSA
$str = $key->is_private ? $key->get_private_key_string : $key->get_public_key_string;
}
elsif (ref($key) =~ /^Crypt::(X509|OpenSSL::X509)$/) {
# https://metacpan.org/pod/Crypt::X509
# https://metacpan.org/pod/Crypt::OpenSSL::X509
$str = $key->pubkey;
}
return Crypt::PK::RSA->new(\$str) if defined $str && !ref($str);
croak "JWT: invalid RSA key";
}
sub _prepare_ecc_key {
my ($key) = @_;
croak "JWT: undefined ECC key" unless defined $key;
croak "JWT: invalid ECC key (cannot be scalar)" unless ref $key;
# we need Crypt::PK::ECC object
return $key if ref($key) eq 'Crypt::PK::ECC';
return Crypt::PK::ECC->new($key) if ref($key) eq 'HASH' || ref($key) eq 'SCALAR';
return Crypt::PK::ECC->new(@$key) if ref($key) eq 'ARRAY';
croak "JWT: invalid ECC key";
}
sub _prepare_ed25519_key {
my ($key) = @_;
croak "JWT: undefined Ed25519 key" unless defined $key;
croak "JWT: invalid Ed25519 key (cannot be scalar)" unless ref $key;
# we need Crypt::PK::Ed25519 object
return $key if ref($key) eq 'Crypt::PK::Ed25519';
return Crypt::PK::Ed25519->new($key) if ref($key) eq 'HASH' || ref($key) eq 'SCALAR';
return Crypt::PK::Ed25519->new(@$key) if ref($key) eq 'ARRAY';
croak "JWT: invalid Ed25519 key";
}
sub _prepare_ecdh_key {
my ($key) = @_;
croak "JWT: undefined ECDH key" unless defined $key;
croak "JWT: invalid ECDH key (cannot be scalar)" unless ref $key;
# we need Crypt::PK::X25519 or Crypt::PK::ECC object
return $key if ref($key) =~ /^Crypt::PK::(ECC|X25519)$/;
if (ref($key) eq 'HASH' || ref($key) eq 'SCALAR') {
#HACK: this is ugly
my $rv = eval { Crypt::PK::ECC->new($key) } || eval { Crypt::PK::X25519->new($key) };
return $rv if defined $rv;
}
if (ref($key) eq 'ARRAY') {
#HACK: this is ugly
my $rv = eval { Crypt::PK::ECC->new(@$key) } || eval { Crypt::PK::X25519->new(@$key) };
return $rv if defined $rv;
}
croak "JWT: invalid ECDH key";
}
sub _prepare_oct_key {
my ($key) = @_;
croak "JWT: undefined oct key" unless defined $key;
if (ref $key eq 'HASH' && $key->{k} && $key->{kty} && $key->{kty} eq 'oct') {
return decode_b64u($key->{k});
}
elsif (!ref $key) {
return $key;
}
croak "JWT: invalid oct key";
}
sub _kid_lookup {
my ($kid, $kid_keys, $alg) = @_;
return undef if !defined $kid || !defined $alg;
$kid_keys = eval { decode_json($kid_keys) } if $kid_keys && !ref $kid_keys;
croak "JWT: kid_keys must be a HASHREF or a valid JSON/HASH" if ref $kid_keys ne 'HASH';
my $found;
if (exists $kid_keys->{keys} && ref $kid_keys->{keys} eq 'ARRAY') {
#FORMAT: { keys => [ {kid=>'A', kty=>?, ...}, {kid=>'B', kty=>?, ...} ] }
for (@{$kid_keys->{keys}}) {
if ($_->{kid} && $_->{kty} && $_->{kid} eq $kid) {
$found = $_;
last;
}
}
}
else {
#FORMAT: { hexadec1 => "----BEGIN CERTIFICATE-----...", hexadec2 => "----BEGIN CERTIFICATE-----..." }
#e.g. https://www.googleapis.com/oauth2/v1/certs
return \$kid_keys->{$kid} if $kid_keys->{$kid} && !ref $kid_keys->{$kid};
}
return undef if !$found;
return $found if $found->{kty} eq 'oct' && $alg =~ /^(HS|dir|PBES2-HS|A)/;
return $found if $found->{kty} eq 'OKP' && $alg =~ /^(EdDSA|ECDH-ES)/;
return $found if $found->{kty} eq 'EC' && $alg =~ /^(ES|EC)/;
return $found if $found->{kty} eq 'RSA' && $alg =~ /^(RS|PS)/;
croak "JWT: key type '$found->{kty}' cannot be used with alg '$alg'";
}
sub _b64u_to_hash {
my $b64url = shift;
return undef unless $b64url;
my $json = decode_b64u($b64url);
return undef unless $json;
my $hash = eval { decode_json($json) };
return undef unless ref $hash eq 'HASH';
return $hash;
}
sub _add_claims {
my ($payload, %args) = @_;
#### claims (defined for JWS only)
# "exp" Expiration Time
# "nbf" Not Before
# "iat" Issued At
# "iss" Issuer
# "sub" Subject
# "aud" Audience
# "jti" JWT ID
my $now = time;
$payload->{iat} = $now if $args{auto_iat};
$payload->{exp} = $now + $args{relative_exp} if defined $args{relative_exp};
$payload->{nbf} = $now + $args{relative_nbf} if defined $args{relative_nbf};
}
sub _verify_header {
my ($header, %args) = @_;
# currently we only check "typ" header parameter
my $check = $args{verify_typ};
return if !defined $check;
if (exists $header->{typ}) {
if (ref $check eq 'Regexp') {
my $value = $header->{typ};
$value = "" if !defined $value;
croak "JWT: typ header re check failed" unless $value =~ $check;
}
elsif (ref $check eq 'CODE') {
croak "JWT: typ header code check failed" unless $check->($header->{typ});
}
elsif (!ref $check) {
my $value = $header->{typ};
croak "JWT: typ header scalar check failed" unless defined $value && $value eq $check;
}
else {
croak "JWT: verify_typ must be Regexp, Scalar or CODE";
}
}
else {
croak "JWT: typ header required but missing"
}
}
sub _verify_claims {
my ($payload, %args) = @_;
return if $args{ignore_claims};
if (ref($payload) ne 'HASH') {
# https://github.com/DCIT/perl-Crypt-JWT/issues/31
# payload needs to be decoded into a HASH for checking any verify_XXXX
for my $claim (qw(exp nbf iat iss sub aud jti)) {
if (defined $args{"verify_$claim"} && $args{"verify_$claim"} != 0) {
croak "JWT: cannot check verify_$claim (payload not decoded JSON/HASH)";
}
}
return; # nothing to check
}
my $leeway = $args{leeway} || 0;
my $now = time;
### exp
if(defined $payload->{exp}) {
if (!defined $args{verify_exp} || $args{verify_exp}==1) {
croak "JWT: exp claim check failed ($payload->{exp}/$leeway vs. $now)" if $payload->{exp} + $leeway <= $now;
}
}
elsif ($args{verify_exp} && $args{verify_exp}==1) {
croak "JWT: exp claim required but missing"
}
### nbf
if(defined $payload->{nbf}) {
if (!defined $args{verify_nbf} || $args{verify_nbf}==1) {
croak "JWT: nbf claim check failed ($payload->{nbf}/$leeway vs. $now)" if $payload->{nbf} - $leeway > $now;
}
}
elsif ($args{verify_nbf} && $args{verify_nbf}==1) {
croak "JWT: nbf claim required but missing"
}
### iat
if (exists $args{verify_iat}) { #default (non existing verify_iat) == no iat check
if(defined $payload->{iat}) {
if (!defined $args{verify_iat} || $args{verify_iat}==1) {
croak "JWT: iat claim check failed ($payload->{iat}/$leeway vs. $now)" if $payload->{iat} - $leeway > $now;
}
}
elsif ($args{verify_iat} && $args{verify_iat}==1) {
croak "JWT: iat claim required but missing"
}
}
### aud
if (defined $args{verify_aud}) {
my $check = $args{verify_aud};
if (exists $payload->{aud}) {
my $match = 0;
# aud claim is a bit special as it can be either a string or an array of strings
my @aud_list = ref $payload->{aud} eq 'ARRAY' ? @{$payload->{aud}} : ( $payload->{aud} );
for my $value (@aud_list) {
if (ref $check eq 'Regexp') {
$value = "" if !defined $value;
$match = 1 if $value =~ $check;
}
elsif (ref $check eq 'CODE') {
$match = 1 if $check->($value);
}
elsif (!ref $check) {
$match = 1 if defined $value && $value eq $check;
}
}
croak "JWT: aud claim check failed" if !$match;
}
else {
croak "JWT: aud claim required but missing"
}
}
### iss, sub, jti
foreach my $claim (qw(iss sub jti)) {
my $check = $args{"verify_$claim"};
next unless (defined $check);
if (exists $payload->{$claim}) {
if (ref $check eq 'Regexp') {
my $value = $payload->{$claim};
$value = "" if !defined $value;
croak "JWT: $claim claim re check failed" unless $value =~ $check;
}
elsif (ref $check eq 'CODE') {
croak "JWT: $claim claim code check failed" unless $check->($payload->{$claim});
}
elsif (!ref $check) {
my $value = $payload->{$claim};
croak "JWT: $claim claim scalar check failed" unless defined $value && $value eq $check;
}
else {
croak "JWT: verify_$claim must be Regexp, Scalar or CODE";
}
}
else {
croak "JWT: $claim claim required but missing"
}
}
}
sub _payload_zip {
my ($payload, $header, $z) = @_;
my @zip = ref $z eq 'ARRAY' ? @$z : ($z);
if ($zip[0] eq 'deflate') {
my $level = defined $zip[1] ? $zip[1] : 6;
$header->{zip} = "DEF";
my $d = Compress::Raw::Zlib::Deflate->new(-Bufsize => 1024, -WindowBits => -&MAX_WBITS(), -AppendOutput => 1, -Level => $level );
my $output = '';
$d->deflate($payload, $output) == Z_OK or croak "JWT: deflate failed";
$d->flush($output) == Z_OK or croak "JWT: deflate/flush failed";
croak "JWT: deflate/output failed" unless $output;
$payload = $output;
}
else {
croak "JWT: unknown zip method '$zip[0]'";
}
return $payload;
}
sub _payload_unzip {
my ($payload, $z) = @_;
if ($z eq "DEF") {
my $d = Compress::Raw::Zlib::Inflate->new(-Bufsize => 1024, -WindowBits => -&MAX_WBITS());
my $output = '';
$d->inflate($payload, $output);
croak "JWT: inflate failed" unless $output;
$payload = $output;
}
else {
croak "JWT: unknown zip method '$z'";
}
return $payload;
}
sub _payload_enc {
my ($payload) = @_;
if (ref($payload) =~ /^(HASH|ARRAY)$/) {
$payload = JSON->new->utf8->canonical->encode($payload);
}
else {
utf8::downgrade($payload, 1) or croak "JWT: payload cannot contain wide character";
}
return $payload;
}
sub _payload_dec {
my ($payload, $decode_payload) = @_;
return $payload if defined $decode_payload && $decode_payload == 0;
my $de = $payload;
$de = eval { decode_json($de) };
if ($decode_payload) {
croak "JWT: payload not a valid JSON" unless $de;
return $de;
}
else {
return defined $de ? $de : $payload;
}
}
sub _encrypt_jwe_cek {
my ($key, $hdr) = @_;
my $alg = $hdr->{alg};
my $enc = $hdr->{enc};
if ($alg eq 'dir') {
return (_prepare_oct_key($key), '');
}
my $cek;
my $ecek;
if ($enc =~ /^A(128|192|256)GCM/) {
$cek = random_bytes($1/8);
}
elsif ($enc =~ /^A(128|192|256)CBC/) {
$cek = random_bytes(2*$1/8);
}
if ($alg =~ /^A(128|192|256)KW$/) {
$ecek = aes_key_wrap(_prepare_oct_key($key), $cek);
return ($cek, $ecek);
}
elsif ($alg =~ /^A(128|192|256)GCMKW$/) {
my ($t, $i);
($ecek, $t, $i) = gcm_key_wrap(_prepare_oct_key($key), $cek);
$hdr->{tag} = encode_b64u($t);
$hdr->{iv} = encode_b64u($i);
return ($cek, $ecek);
}
elsif ($alg =~ /^PBES2-HS(512|384|256)\+A(128|192|256)KW$/) {
my $len = looks_like_number($hdr->{p2s}) && $hdr->{p2s} >= 8 && $hdr->{p2s} <= 9999 ? $hdr->{p2s} : 16;
my $salt = random_bytes($len);
my $iter = looks_like_number($hdr->{p2c}) ? $hdr->{p2c} : 5000;
$ecek = pbes2_key_wrap(_prepare_oct_key($key), $cek, $alg, $salt, $iter);
$hdr->{p2s} = encode_b64u($salt);
$hdr->{p2c} = $iter;
return ($cek, $ecek);
}
elsif ($alg =~ /^RSA(-OAEP|-OAEP-256|1_5)$/) {
$key = _prepare_rsa_key($key);
$ecek = rsa_key_wrap($key, $cek, $alg);
return ($cek, $ecek);
}
elsif ($alg =~ /^ECDH-ES\+A(128|192|256)KW$/) {
$key = _prepare_ecdh_key($key);
($ecek, $hdr->{epk}) = ecdhaes_key_wrap($key, $cek, $alg, $hdr->{apu}, $hdr->{apv});
return ($cek, $ecek);
}
elsif ($alg eq 'ECDH-ES') {
$key = _prepare_ecdh_key($key);
($cek, $hdr->{epk}) = ecdh_key_wrap($key, $enc, $hdr->{apu}, $hdr->{apv});
return ($cek, '');
}
croak "JWE: unknown alg '$alg'";
}
sub _decrypt_jwe_cek {
my ($ecek, $key, $hdr) = @_;
my $alg = $hdr->{alg};
my $enc = $hdr->{enc};
if ($alg eq 'dir') {
return _prepare_oct_key($key);
}
elsif ($alg =~ /^A(128|192|256)KW$/) {
return aes_key_unwrap(_prepare_oct_key($key), $ecek);
}
elsif ($alg =~ /^A(128|192|256)GCMKW$/) {
return gcm_key_unwrap(_prepare_oct_key($key), $ecek, decode_b64u($hdr->{tag}), decode_b64u($hdr->{iv}));
}
elsif ($alg =~ /^PBES2-HS(512|384|256)\+A(128|192|256)KW$/) {
return pbes2_key_unwrap(_prepare_oct_key($key), $ecek, $alg, decode_b64u($hdr->{p2s}), $hdr->{p2c});
}
elsif ($alg =~ /^RSA(-OAEP|-OAEP-256|1_5)$/) {
$key = _prepare_rsa_key($key);
return rsa_key_unwrap($key, $ecek, $alg);
}
elsif ($alg =~ /^ECDH-ES\+A(128|192|256)KW$/) {
$key = _prepare_ecdh_key($key);
return ecdhaes_key_unwrap($key, $ecek, $alg, $hdr->{epk}, $hdr->{apu}, $hdr->{apv});
}
elsif ($alg eq 'ECDH-ES') {
$key = _prepare_ecdh_key($key);
return ecdh_key_unwrap($key, $enc, $hdr->{epk}, $hdr->{apu}, $hdr->{apv});
}
croak "JWE: unknown alg '$alg'";
}
sub _encrypt_jwe_payload {
my ($cek, $enc, $b64u_header, $b64u_aad, $payload) = @_;
my $aad = defined $b64u_aad ? "$b64u_header.$b64u_aad" : $b64u_header;
if ($enc =~ /^A(128|192|256)GCM$/) {
# https://tools.ietf.org/html/rfc7518#section-5.3
my $len1 = $1/8;
my $len2 = length($cek);
croak "JWE: wrong AES key length ($len1 vs. $len2) for $enc" unless $len1 == $len2;
my $iv = random_bytes(12); # for AESGCM always 12 (96 bits)
my ($ct, $tag) = gcm_encrypt_authenticate('AES', $cek, $iv, $aad, $payload);
return ($ct, $iv, $tag);
}
elsif ($enc =~ /^A(128|192|256)CBC-HS(256|384|512)$/) {
# https://tools.ietf.org/html/rfc7518#section-5.2
my ($size, $hash) = ($1/8, "SHA$2");
my $key_len = length($cek) / 2;
my $mac_key = substr($cek, 0, $key_len);
my $aes_key = substr($cek, $key_len, $key_len);
croak "JWE: wrong AES key length ($key_len vs. $size)" unless $key_len == $size;
my $iv = random_bytes(16); # for AES always 16
my $m = Crypt::Mode::CBC->new('AES');
my $ct = $m->encrypt($payload, $aes_key, $iv);
my $aad_len = length($aad);
my $mac_input = $aad . $iv . $ct . pack('N2', ($aad_len / 2147483647)*8, ($aad_len % 2147483647)*8);
my $mac = hmac($hash, $mac_key, $mac_input);
my $sig_len = length($mac) / 2;
my $sig = substr($mac, 0, $sig_len);
return ($ct, $iv, $sig);
}
croak "JWE: unsupported enc '$enc'";
}
sub _decrypt_jwe_payload {
my ($cek, $enc, $aad, $ct, $iv, $tag) = @_;
if ($enc =~ /^A(128|192|256)GCM$/) {
# https://tools.ietf.org/html/rfc7518#section-5.3
my $len1 = $1/8;
my $len2 = length($cek);
croak "JWE: wrong AES key length ($len1 vs. $len2) for $enc" unless $len1 == $len2;
return gcm_decrypt_verify('AES', $cek, $iv, $aad, $ct, $tag);
}
elsif ($enc =~ /^A(128|192|256)CBC-HS(256|384|512)$/) {
# https://tools.ietf.org/html/rfc7518#section-5.2
my ($size, $hash) = ($1/8, "SHA$2");
my $key_len = length($cek) / 2;
my $mac_key = substr($cek, 0, $key_len);
my $aes_key = substr($cek, $key_len, $key_len);
croak "JWE: wrong AES key length ($key_len vs. $size)" unless $key_len == $size;
my $aad_len = length($aad); # AAD == original encoded header
my $mac_input = $aad . $iv . $ct . pack('N2', ($aad_len / 2147483647)*8, ($aad_len % 2147483647)*8);
my $mac = hmac($hash, $mac_key, $mac_input);
my $sig_len = length($mac) / 2;
my $sig = substr($mac, 0, $sig_len);
croak "JWE: tag mismatch" unless $sig eq $tag;
my $m = Crypt::Mode::CBC->new('AES');
my $pt = $m->decrypt($ct, $aes_key, $iv);
return $pt;
}
croak "JWE: unsupported enc '$enc'";
}
sub _encode_jwe {
my %args = @_;
my $payload = $args{payload};
my $alg = $args{alg};
my $enc = $args{enc};
my $header = $args{extra_headers} ? \%{$args{extra_headers}} : {};
croak "JWE: missing 'enc'" if !defined $enc;
croak "JWE: missing 'payload'" if !defined $payload;
# add claims to payload
_add_claims($payload, %args) if ref $payload eq 'HASH';
# serialize payload
$payload = _payload_enc($payload);
# compress payload
$payload = _payload_zip($payload, $header, $args{zip}) if $args{zip}; # may set some header items
# prepare header
$header->{alg} = $alg;
$header->{enc} = $enc;
# key
croak "JWE: missing 'key'" if !$args{key};
my $key = defined $args{keypass} ? [$args{key}, $args{keypass}] : $args{key};
# prepare cek
my ($cek, $ecek) = _encrypt_jwe_cek($key, $header); # adds some header items
# encode header
my $json_header = encode_json($header);
my $b64u_header = encode_b64u($json_header);
my $b64u_aad = defined $args{aad} ? encode_b64u($args{aad}) : undef;
# encrypt payload
my ($ct, $iv, $tag) = _encrypt_jwe_payload($cek, $enc, $b64u_header, $b64u_aad, $payload);
# return token parts
return ( $b64u_header,
encode_b64u($ecek),
encode_b64u($iv),
encode_b64u($ct),
encode_b64u($tag),
$b64u_aad);
}
sub _decode_jwe {
my ($b64u_header, $b64u_ecek, $b64u_iv, $b64u_ct, $b64u_tag, $b64u_aad, $unprotected, $shared_unprotected, %args) = @_;
my $header = _b64u_to_hash($b64u_header);
my $ecek = decode_b64u($b64u_ecek);
my $ct = decode_b64u($b64u_ct);
my $iv = decode_b64u($b64u_iv);
my $tag = decode_b64u($b64u_tag);
croak "JWE: invalid header part" if $b64u_header && !$header;
croak "JWE: invalid ecek part" if $b64u_ecek && !$ecek;
croak "JWE: invalid ct part" if $b64u_ct && !$ct;
croak "JWE: invalid iv part" if $b64u_iv && !$iv;
croak "JWE: invalid tag part" if $b64u_tag && !$tag;
my $key;
if (exists $args{key}) {
$key = defined $args{keypass} ? [$args{key}, $args{keypass}] : $args{key};
}
elsif (exists $args{kid_keys}) {
# BEWARE: stricter approach since 0.023
# when 'kid_keys' specified it croaks if header doesn't contain 'kid' value or if 'kid' wasn't found in 'kid_keys'
my $k = _kid_lookup($header->{kid}, $args{kid_keys}, $header->{alg});
croak "JWE: kid_keys lookup failed" if !defined $k;
$key = $k;
}
croak "JWE: missing key" if !defined $key;
my $aa = $args{accepted_alg};
if (ref($aa) eq 'Regexp') {
croak "JWE: alg '$header->{alg}' does not match accepted_alg" if $header->{alg} !~ $aa;
}
elsif ($aa && (ref($aa) eq 'ARRAY' || !ref($aa))) {
my %acca = ref $aa ? map { $_ => 1 } @$aa : ( $aa => 1 );
croak "JWE: alg '$header->{alg}' not in accepted_alg" if !$acca{$header->{alg}};
}
my $ae = $args{accepted_enc};
if (ref($ae) eq 'Regexp') {
croak "JWE: enc '$header->{enc}' does not match accepted_enc" if $header->{enc} !~ $ae;
}
elsif ($ae && (ref($ae) eq 'ARRAY' || !ref($ae))) {
my %acce = ref $ae ? map { $_ => 1 } @$ae : ( $ae => 1 );
croak "JWE: enc '$header->{enc}' not in accepted_enc" if !$acce{$header->{enc}};
}
$header = { %$shared_unprotected, %$unprotected, %$header }; # merge headers
my $cek = _decrypt_jwe_cek($ecek, $key, $header);
my $aad = defined $b64u_aad ? "$b64u_header.$b64u_aad" : $b64u_header;
my $payload = _decrypt_jwe_payload($cek, $header->{enc}, $aad, $ct, $iv, $tag);
$payload = _payload_unzip($payload, $header->{zip}) if $header->{zip};
$payload = _payload_dec($payload, $args{decode_payload});
_verify_claims($payload, %args); # croaks on error
_verify_header($header, %args); # croaks on error
return ($header, $payload);
}
sub _sign_jws {
my ($b64u_header, $b64u_payload, $alg, $key) = @_;
return '' if $alg eq 'none'; # no integrity
my $sig;
my $data = "$b64u_header.$b64u_payload";
if ($alg =~ /^HS(256|384|512)$/) { # HMAC integrity
$key = _prepare_oct_key($key);
$sig = hmac("SHA$1", $key, $data);
}
elsif ($alg =~ /^RS(256|384|512)/) { # RSA+PKCS1-V1_5 signatures
my $pk = _prepare_rsa_key($key);
$sig = $pk->sign_message($data, "SHA$1", 'v1.5');
}
elsif ($alg =~ /^PS(256|384|512)/) { # RSA+PSS signatures
my $hash = "SHA$1";
my $hashlen = $1/8;
my $pk = _prepare_rsa_key($key);
$sig = $pk->sign_message($data, $hash, 'pss', $hashlen);
}
elsif ($alg =~ /^ES(256|256K|384|512)$/) { # ECDSA signatures
my $hash = {ES256 => 'SHA256', ES256K => 'SHA256', ES384 => 'SHA384', ES512 => 'SHA512'}->{$alg};
my $pk = _prepare_ecc_key($key);
$sig = $pk->sign_message_rfc7518($data, $hash);
}
elsif ($alg eq 'EdDSA') { # Ed25519 signatures
my $pk = _prepare_ed25519_key($key);
$sig = $pk->sign_message($data);
}
return encode_b64u($sig);
}
sub _verify_jws {
my ($b64u_header, $b64u_payload, $b64u_sig, $alg, $key) = @_;
my $sig = decode_b64u($b64u_sig);
croak "JWS: invalid sig part" if $b64u_sig && !$sig;
my $data = "$b64u_header.$b64u_payload";
if ($alg eq 'none' ) { # no integrity
return 1;
}
elsif ($alg =~ /^HS(256|384|512)$/) { # HMAC integrity
$key = _prepare_oct_key($key);
return 1 if $sig eq hmac("SHA$1", $key, $data);
}
elsif ($alg =~ /^RS(256|384|512)/) { # RSA+PKCS1-V1_5 signatures
my $hash = "SHA$1";
my $pk = _prepare_rsa_key($key);
return 1 if $pk->verify_message($sig, $data, $hash, 'v1.5');
}
elsif ($alg =~ /^PS(256|384|512)/) { # RSA+PSS signatures
my $hash = "SHA$1";
my $hashlen = $1/8;
my $pk = _prepare_rsa_key($key);
return 1 if $pk->verify_message($sig, $data, $hash, 'pss', $hashlen);
}
elsif ($alg =~ /^ES(256|256K|384|512)$/) { # ECDSA signatures
my $hash = {ES256 => 'SHA256', ES256K => 'SHA256', ES384 => 'SHA384', ES512 => 'SHA512'}->{$alg};
my $pk = _prepare_ecc_key($key);
return 1 if $pk->verify_message_rfc7518($sig, $data, $hash);
}
elsif ($alg eq 'EdDSA') { # Ed25519 signatures
my $pk = _prepare_ed25519_key($key);
return 1 if $pk->verify_message($sig, $data);
}
return 0;
}
sub _encode_jws {
my %args = @_;
my $payload = $args{payload};
my $alg = $args{alg};
my $header = $args{extra_headers} ? \%{$args{extra_headers}} : {};
croak "JWS: missing 'payload'" if !defined $payload;
croak "JWS: alg 'none' not allowed" if $alg eq 'none' && !$args{allow_none};
# add claims to payload
_add_claims($payload, %args) if ref $payload eq 'HASH';
# serialize payload
$payload = _payload_enc($payload);
# compress payload
$payload = _payload_zip($payload, $header, $args{zip}) if $args{zip}; # may set some header items
# encode payload
my $b64u_payload = encode_b64u($payload);
# prepare header
$header->{alg} = $alg;
# encode header
my $json_header = encode_json($header);
my $b64u_header = encode_b64u($json_header);
# key
croak "JWS: missing 'key'" if !$args{key} && $alg ne 'none';
my $key = defined $args{keypass} ? [$args{key}, $args{keypass}] : $args{key};
# sign header
my $b64u_signature = _sign_jws($b64u_header, $b64u_payload, $alg, $key);
return ($b64u_header, $b64u_payload, $b64u_signature);
}
sub _decode_jws {
my ($b64u_header, $b64u_payload, $b64u_sig, $unprotected_header, %args) = @_;
my $header = _b64u_to_hash($b64u_header);
croak "JWS: invalid header part" if $b64u_header && !$header;
$unprotected_header = {} if ref $unprotected_header ne 'HASH';
if (!$args{ignore_signature}) {
my $alg = $header->{alg};
croak "JWS: missing header 'alg'" unless $alg;
croak "JWS: alg 'none' not allowed" if $alg eq 'none' && !$args{allow_none};
croak "JWS: alg 'none' expects no signature" if $alg eq 'none' && defined $b64u_sig && length($b64u_sig) > 0;
my $aa = $args{accepted_alg};
if (ref $aa eq 'Regexp') {
croak "JWS: alg '$alg' does not match accepted_alg" if $alg !~ $aa;
}
elsif (ref $aa eq 'ARRAY') {
my %acca = map { $_ => 1 } @$aa;
croak "JWS: alg '$alg' not in accepted_alg" if !$acca{$alg};
}
elsif (defined $aa) {
croak "JWS: alg '$alg' not accepted_alg" if $aa ne $alg;
}
if ($alg ne 'none') {
my $key;
if (exists $args{key}) {
$key = defined $args{keypass} ? [$args{key}, $args{keypass}] : $args{key};
}
elsif (exists $args{kid_keys}) {
# BEWARE: stricter approach since 0.023
# when 'kid_keys' specified it croaks if header doesn't contain 'kid' value or if 'kid' wasn't found in 'kid_keys'
my $kid = exists $header->{kid} ? $header->{kid} : $unprotected_header->{kid};
my $k = _kid_lookup($kid, $args{kid_keys}, $alg);
croak "JWS: kid_keys lookup failed" if !defined $k;
$key = $k;
}
elsif ($args{key_from_jwk_header}) {
# BEWARE: stricter approach since 0.023
# - header 'jwk' is by default ignored (unless given: key_from_jwk_header => 1)
# - only RSA/ECDSA public keys are accepted
my $k = $header->{jwk};
croak "JWS: jwk header does not contain a key" if !defined $k || ref($k) ne 'HASH' || !defined $k->{kty};
croak "JWS: jwk header allowed only for RSA/ECDSA" if $alg !~ /^(RS|PS|ES)/ || $k->{kty} !~ /^(RSA|EC)$/;
croak "JWS: jwk header must be a public key" if $k->{d} || $k->{p} || $k->{q} || $k->{dp} || $k->{dq} || $k->{qi};
$key = $k;
}
croak "JWS: missing key" if !defined $key;
my $valid = _verify_jws($b64u_header, $b64u_payload, $b64u_sig, $alg, $key);
croak "JWS: invalid signature" if !$valid;
}
}
my $payload = decode_b64u($b64u_payload);
croak "JWS: invalid payload part" if $b64u_payload && !$payload;
$payload = _payload_unzip($payload, $header->{zip}) if $header->{zip};
$payload = _payload_dec($payload, $args{decode_payload});
_verify_claims($payload, %args); # croaks on error
$header = { %$unprotected_header, %$header }; # merge headers
_verify_header($header, %args); # croaks on error
return ($header, $payload);
}
sub encode_jwt {
my %args = @_;
croak "JWT: missing 'alg'" unless $args{alg};
my $ser = $args{serialization} || 'compact';
if ($args{alg} =~ /^(none|EdDSA|(HS|RS|PS)(256|384|512)|ES(256|256K|384|512))$/) {
###JWS
my ($b64u_header, $b64u_payload, $b64u_signature) = _encode_jws(%args);
if ($ser eq 'compact') { # https://tools.ietf.org/html/rfc7515#section-7.1
croak "JWT: cannot use 'unprotected_headers' with compact serialization" if defined $args{unprotected_headers};
return "$b64u_header.$b64u_payload.$b64u_signature";
}
elsif ($ser eq 'flattened') { # https://tools.ietf.org/html/rfc7515#section-7.2.2
my $token = { protected => $b64u_header, payload => $b64u_payload, signature => $b64u_signature };
$token->{header} = \%{$args{unprotected_headers}} if ref $args{unprotected_headers} eq 'HASH';
return encode_json($token);
}
else {
croak "JWT: unsupported JWS serialization '$ser'";
}
}
elsif ($args{alg} =~ /^(dir|A(128|192|256)KW|A(128|192|256)GCMKW|PBES2-(HS256\+A128KW|HS384\+A192KW|HS512\+A256KW)|RSA-OAEP|RSA-OAEP-256|RSA1_5|ECDH-ES\+A(128|192|256)KW|ECDH-ES)$/) {
### JWE
my ($b64u_header, $b64u_ecek, $b64u_iv, $b64u_ct, $b64u_tag, $b64u_aad) = _encode_jwe(%args);
if ($ser eq 'compact') { # https://tools.ietf.org/html/rfc7516#section-7.1
croak "JWT: cannot use 'aad' with compact serialization" if defined $args{aad};
croak "JWT: cannot use 'unprotected_headers' with compact serialization" if defined $args{unprotected_headers};
croak "JWT: cannot use 'shared_unprotected_headers' with compact serialization" if defined $args{shared_unprotected_headers};
return "$b64u_header.$b64u_ecek.$b64u_iv.$b64u_ct.$b64u_tag";
}
elsif ($ser eq 'flattened') { # https://tools.ietf.org/html/rfc7516#section-7.2.2
my $token = {
protected => $b64u_header,
encrypted_key => $b64u_ecek,
iv => $b64u_iv,
ciphertext => $b64u_ct,
tag => $b64u_tag,
};
# header: JWE Per-Recipient Unprotected Header when the JWE Per-Recipient Unprotected Header
$token->{header} = \%{$args{unprotected_headers}} if ref $args{unprotected_headers} eq 'HASH';
# unprotected: JWE Shared Unprotected Header
$token->{unprotected} = \%{$args{shared_unprotected_headers}} if ref $args{shared_unprotected_headers} eq 'HASH';
# aad: Additional Authenticated Data (AAD)
$token->{aad} = $b64u_aad if defined $b64u_aad;
return encode_json($token);
}
else {
croak "JWT: unsupported JWE serialization '$ser'";
}
}
else {
croak "JWT: unexpected alg '$args{alg}'";
}
}
sub decode_jwt {
my %args = @_;
my ($header, $payload);
if (!$args{token}) {
croak "JWT: missing token";
}
my $token_re = $args{tolerate_padding}
? qr/^([a-zA-Z0-9_-]+=*)\.([a-zA-Z0-9_-]*=*)\.([a-zA-Z0-9_-]*=*)(?:\.([a-zA-Z0-9_-]+=*)\.([a-zA-Z0-9_-]+=*))?$/
: qr/^([a-zA-Z0-9_-]+)=*\.([a-zA-Z0-9_-]*)=*\.([a-zA-Z0-9_-]*)=*(?:\.([a-zA-Z0-9_-]+)=*\.([a-zA-Z0-9_-]+)=*)?$/;
if ($args{token} =~ $token_re) {
if (defined($5) && length($5) > 0) {
# JWE token (5 segments)
($header, $payload) = _decode_jwe($1, $2, $3, $4, $5, undef, {}, {}, %args);
}
else {
# JWS token (3 segments)
($header, $payload) = _decode_jws($1, $2, $3, {}, %args);
}
}
elsif ($args{token} =~ /^\s*\{.*?\}\s*$/s) {
my $hash = decode_json($args{token});
if (defined $hash->{payload} && $hash->{protected}) {
# Flattened JWS JSON Serialization
($header, $payload) = _decode_jws($hash->{protected}, $hash->{payload}, $hash->{signature}, $hash->{header}, %args);
}
elsif ($hash->{ciphertext} && $hash->{protected}) {
# Flattened JWE JSON Serialization
($header, $payload) = _decode_jwe($hash->{protected}, $hash->{encrypted_key}, $hash->{iv}, $hash->{ciphertext}, $hash->{tag}, $hash->{aad}, $hash->{header}, $hash->{unprotected}, %args);
}
else {
croak "JWT: unsupported JWS/JWT JSON Serialization";
}
}
else {
croak "JWT: invalid token format";
}
return ($header, $payload) if $args{decode_header};
return $payload;
}
1;
#### URLs
# https://metacpan.org/pod/JSON::WebToken
# https://metacpan.org/pod/Mojo::JWT
# https://bitbucket.org/b_c/jose4j/wiki/JWE%20Examples
# https://bitbucket.org/b_c/jose4j/wiki/JWS%20Examples
# https://github.com/dvsekhvalnov/jose-jwt/tree/master/JWT/jwe
# https://github.com/progrium/ruby-jwt
# https://github.com/jpadilla/pyjwt/
=pod
=head1 NAME
Crypt::JWT - JSON Web Token (JWT, JWS, JWE) as defined by RFC7519, RFC7515, RFC7516
=head1 SYNOPSIS
# encoding
use Crypt::JWT qw(encode_jwt);
my $jws_token = encode_jwt(payload=>$data, alg=>'HS256', key=>'secret');
my $jwe_token = encode_jwt(payload=>$data, alg=>'PBES2-HS256+A128KW', enc=>'A128GCM', key=>'secret');
# decoding
use Crypt::JWT qw(decode_jwt);
my $data1 = decode_jwt(token=>$jws_token, key=>'secret');
my $data2 = decode_jwt(token=>$jwe_token, key=>'secret');
=head1 DESCRIPTION
Implements B<JSON Web Token (JWT)> - L<https://tools.ietf.org/html/rfc7519>.
The implementation covers not only B<JSON Web Signature (JWS)> - L<https://tools.ietf.org/html/rfc7515>,
but also B<JSON Web Encryption (JWE)> - L<https://tools.ietf.org/html/rfc7516>.
The module implements B<all (100%) algorithms> defined in L<https://tools.ietf.org/html/rfc7518> - B<JSON Web Algorithms (JWA)>.
This module supports B<Compact JWS/JWE> and B<Flattened JWS/JWE JSON> serialization, general JSON serialization is not supported yet.
=head1 EXPORT
Nothing is exported by default.
You can export selected functions:
use Crypt::JWT qw(decode_jwt encode_jwt);
Or all of them at once:
use Crypt::JWT ':all';
=head1 FUNCTIONS
=head2 decode_jwt
my $data = decode_jwt(%named_args);
Named arguments:
=over
=item token
Mandatory argument, a string with either JWS or JWE JSON Web Token.
### JWS token example (3 segments)
$t = "eyJhbGciOiJIUzI1NiJ9.dGVzdA.ujBihtLSr66CEWqN74SpLUkv28lra_CeHnxLmLNp4Jo";
my $data = decode_jwt(token=>$t, key=>$k);
### JWE token example (5 segments)
$t = "eyJlbmMiOiJBMTI4R0NNIiwiYWxnIjoiQTEyOEtXIn0.UusxEbzhGkORxTRq0xkFKhvzPrXb9smw.VGfOuq0Fxt6TsdqLZUpnxw.JajIQQ.pkKZ7MHS0XjyGmRsqgom6w";
my $data = decode_jwt(token=>$t, key=>$k);
=item key
A key used for token decryption (JWE) or token signature validation (JWS).
The value depends on the C<alg> token header value.
JWS alg header key value
------------------ ----------------------------------
none no key required
HS256 string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
HS384 dtto
HS512 dtto
RS256 public RSA key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
object: Crypt::PK::RSA, Crypt::OpenSSL::RSA, Crypt::X509 or Crypt::OpenSSL::X509
RS384 public RSA key, see RS256
RS512 public RSA key, see RS256
PS256 public RSA key, see RS256
PS384 public RSA key, see RS256
PS512 public RSA key, see RS256
ES256 public ECC key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
an instance of Crypt::PK::ECC
ES256K public ECC key, see ES256
ES384 public ECC key, see ES256
ES512 public ECC key, see ES256
EdDSA public Ed25519 key
JWE alg header key value
------------------ ----------------------------------
dir string (raw octects) or perl HASH ref with JWK, kty=>'oct', length depends on 'enc' algorithm
A128KW string (raw octects) 16 bytes (or perl HASH ref with JWK, kty=>'oct')
A192KW string (raw octects) 24 bytes (or perl HASH ref with JWK, kty=>'oct')
A256KW string (raw octects) 32 bytes (or perl HASH ref with JWK, kty=>'oct')
A128GCMKW string (raw octects) 16 bytes (or perl HASH ref with JWK, kty=>'oct')
A192GCMKW string (raw octects) 24 bytes (or perl HASH ref with JWK, kty=>'oct')
A256GCMKW string (raw octects) 32 bytes (or perl HASH ref with JWK, kty=>'oct')
PBES2-HS256+A128KW string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
PBES2-HS384+A192KW string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
PBES2-HS512+A256KW string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
RSA-OAEP private RSA key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
an instance of Crypt::PK::RSA or Crypt::OpenSSL::RSA
RSA-OAEP-256 private RSA key, see RSA-OAEP
RSA1_5 private RSA key, see RSA-OAEP
ECDH-ES private ECC or X25519 key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
an instance of Crypt::PK::ECC
ECDH-ES+A128KW private ECC or X25519 key, see ECDH-ES
ECDH-ES+A192KW private ECC or X25519 key, see ECDH-ES
ECDH-ES+A256KW private ECC or X25519 key, see ECDH-ES
Example using the key from C<jwk> token header:
my $data = decode_jwt(token=>$t, key_from_jwk_header=>1);
my ($header, $data) = decode_jwt(token=>$t, decode_header=>1, key_from_jwk_header=>1);
Examples with raw octet keys:
#string
my $data = decode_jwt(token=>$t, key=>'secretkey');
#binary key
my $data = decode_jwt(token=>$t, key=>pack("H*", "788A6E38F36B7596EF6A669E94"));
#perl HASH ref with JWK structure (key type 'oct')
my $data = decode_jwt(token=>$t, key=>{kty=>'oct', k=>"GawgguFyGrWKav7AX4VKUg"});
Examples with RSA keys:
my $pem_key_string = <<'EOF';
-----BEGIN PRIVATE KEY-----
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCoVm/Sl5r+Ofky
jioRSZK26GW6WyjyfWKddsSi13/NOtCn0rRErSF/u3QrgGMpWFqKohqbi1VVC+SZ
...
8c1vm2YFafgdkSk9Qd1oU2Fv1aOQy4VovOFzJ3CcR+2r7cbRfcpLGnintHtp9yek
02p+d5g4OChfFNDhDtnIqjvY
-----END PRIVATE KEY-----
EOF
my $jwk_key_json_string = '{"kty":"RSA","n":"0vx7agoebG...L6tSoc_BJECP","e":"AQAB"}';
#a reference to SCALAR string with PEM or DER or JSON/JWK data,
my $data = decode_jwt(token=>$t, key=>\$pem_key_string);
my $data = decode_jwt(token=>$t, key=>\$der_key_string);
my $data = decode_jwt(token=>$t, key=>\$jwk_key_json_string);
#instance of Crypt::PK::RSA
my $data = decode_jwt(token=>$t, key=>Crypt::PK::RSA->new('keyfile.pem'));
my $data = decode_jwt(token=>$t, key=>Crypt::PK::RSA->new(\$pem_key_string));
#instance of Crypt::OpenSSL::RSA
my $data = decode_jwt(token=>$t, key=>Crypt::OpenSSL::RSA->new_private_key($pem_key_string));
#instance of Crypt::X509 (public key only)
my $data = decode_jwt(token=>$t, key=>Crypt::X509->new(cert=>$cert));
#instance of Crypt::OpenSSL::X509 (public key only)
my $data = decode_jwt(token=>$t, key=>Crypt::OpenSSL::X509->new_from_file('cert.pem'));
my $data = decode_jwt(token=>$t, key=>Crypt::OpenSSL::X509->new_from_string($cert));
#perl HASH ref with JWK structure (key type 'RSA')
my $rsa_priv = {
kty => "RSA",
n => "0vx7agoebGcQSuuPiLJXZpt...eZu0fM4lFd2NcRwr3XPksINHaQ-G_xBniIqbw0Ls1jF44-csFCur-kEgU8awapJzKnqDKgw",
e => "AQAB",
d => "X4cTteJY_gn4FYPsXB8rdXi...FLN5EEaG6RoVH-HLKD9Mdx5ooGURknhnrRwUkC7h5fJLMWbFAKLWY2v7B6NqSzUvx0_YSf",
p => "83i-7IvMGXoMXCskv73TKr8...Z27zvoj6pbUQyLPBQxtPnwD20-60eTmD2ujMt5PoMrm8RmNhVWtjjMmMjOpSicFHjXOuVI",
q => "3dfOR9cuYq-0S-mkFLzgItg...q3hWeMuG0ouqnb3obLyuqjVZQ1dIrdgTnCdYzBcOW5r37AFXjift_NGiovonzhKpoVVS78",
dp => "G4sPXkc6Ya9y8oJW9_ILj4...zi_H7TkS8x5SdX3oE0oiYwxIiemTAu0UOa5pgFGyJ4c8t2VF40XRugKTP8akhFo5tA77Qe",
dq => "s9lAH9fggBsoFR8Oac2R_E...T2kGOhvIllTE1efA6huUvMfBcpn8lqW6vzzYY5SSF7pMd_agI3G8IbpBUb0JiraRNUfLhc",
qi => "GyM_p6JrXySiz1toFgKbWV...4ypu9bMWx3QJBfm0FoYzUIZEVEcOqwmRN81oDAaaBk0KWGDjJHDdDmFW3AN7I-pux_mHZG",
};
my $data = decode_jwt(token=>$t, key=>$rsa_priv});
Examples with ECC keys:
my $pem_key_string = <<'EOF';
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIBG1c3z52T8XwMsahGVdOZWgKCQJfv+l7djuJjgetdbDoAoGCCqGSM49
AwEHoUQDQgAEoBUyo8CQAFPeYPvv78ylh5MwFZjTCLQeb042TjiMJxG+9DLFmRSM
lBQ9T/RsLLc+PmpB1+7yPAR+oR5gZn3kJQ==
-----END EC PRIVATE KEY-----
EOF
my $jwk_key_json_string = '{"kty":"EC","crv":"P-256","x":"MKB..7D4","y":"4Et..FyM"}';
#a reference to SCALAR string with PEM or DER or JSON/JWK data,
my $data = decode_jwt(token=>$t, key=>\$pem_key_string);
my $data = decode_jwt(token=>$t, key=>\$der_key_string);
my $data = decode_jwt(token=>$t, key=>\$jwk_key_json_string);
#instance of Crypt::PK::ECC
my $data = decode_jwt(token=>$t, key=>Crypt::PK::ECC->new('keyfile.pem'));
my $data = decode_jwt(token=>$t, key=>Crypt::PK::ECC->new(\$pem_key_string));
#perl HASH ref with JWK structure (key type 'EC')
my $ecc_priv = {
kty => "EC",
crv => "P-256",
x => "MKBCTNIcKUSDii11ySs3526iDZ8AiTo7Tu6KPAqv7D4",
y => "4Etl6SRW2YiLUrN5vfvVHuhp7x8PxltmWWlbbM4IFyM",
d => "870MB6gfuTJ4HtUnUvYMyJpr5eUZNP4Bk43bVdj3eAE",
};
my $data = decode_jwt(token=>$t, key=>$ecc_priv});
=item keypass
When 'key' parameter is an encrypted private RSA or ECC key this optional parameter may contain a password for private key decryption.
=item kid_keys
This parametes can be either a JWK Set JSON string (see RFC7517) or a perl HASH ref with JWK Set structure like this:
my $keylist = {
keys => [
{ kid=>"key1", kty=>"oct", k=>"GawgguFyGrWKav7AX4VKUg" },
{ kid=>"key2", kty=>"oct", k=>"ulxLGy4XqhbpkR5ObGh1gX" },
]
};
my $payload = decode_jwt(token=>$t, kid_keys=>$keylist);
You can use L<Crypt::PK::RSA/"export_key_jwk"> to generate a JWK for RSA:
my $pubkey = Crypt::PK::RSA->new('rs256-4096-public.pem');
my $jwk_hash = $pubkey->export_key_jwk('public', 1);
$jwk_hash->{kid} = 'key1';
my $keylist = {
keys => [
$jwk_hash,
]
};
The structure described above is used e.g. by L<https://www.googleapis.com/oauth2/v2/certs>
use Mojo::UserAgent;
my $ua = Mojo::UserAgent->new;
my $google_keys => $ua->get('https://www.googleapis.com/oauth2/v2/certs')->result->json;
my $payload = decode_jwt(token => $t, kid_keys => $google_keys);
B<SINCE 0.019> we also support alternative structure used e.g. by L<https://www.googleapis.com/oauth2/v1/certs>:
use LWP::Simple;
my $google_certs = get('https://www.googleapis.com/oauth2/v1/certs');
my $payload = decode_jwt(token => $t, kid_keys => $google_certs);
When the token header contains C<kid> item the corresponding key is looked up in C<kid_keys> list and used for token
decoding (you do not need to pass the explicit key via C<key> parameter). Add a kid header using L</"extra_headers">.
B<INCOMPATIBLE CHANGE in 0.023:> When C<kid_keys> is specified it croaks if token header does not contain C<kid> value or
if C<kid> was not found in C<kid_keys>.
=item key_from_jwk_header
B<SINCE 0.023>
C<1> - use C<jwk> header value for validating JWS signature if neither C<key> nor C<kid_keys> specified, B<BEWARE: DANGEROUS, UNSECURE!!!>
C<0> (default) - ignore C<jwk> header value when validating JWS signature
Keep in mind that enabling C<key_from_jwk_header> requires C<jwk> header to exist and be an valid RSA/ECDSA public key (otherwise it croaks).
=item allow_none
C<1> - accept JWS tokens with C<none> 'alg' header value (which means that token has no signature), B<BEWARE: DANGEROUS, UNSECURE!!!>
C<0> (default) - do not allow JWS with C<none> 'alg' header value
=item ignore_signature
C<1> - do not check signature on JWS tokens, B<BEWARE: DANGEROUS, UNSECURE!!!>
C<0> (default) - check signature on JWS tokens
=item accepted_alg
C<undef> (default) means accept all 'alg' algorithms except 'none' (for accepting 'none' use C<allow_none>)
C<string> name of accepted 'alg' algorithm (only one)
C<ARRAY ref> a list of accepted 'alg' algorithms
C<Regexp> that has to match 'alg' algorithm name
my $payload = decode_jwt(token=>$t, key=>$k, accepted_alg=>'HS256');
#or
my $payload = decode_jwt(token=>$t, key=>$k, accepted_alg=>['HS256','HS384']);
#or
my $payload = decode_jwt(token=>$t, key=>$k, accepted_alg=>qr/^HS(256|384|512)$/);
=item accepted_enc
C<undef> (default) means accept all 'enc' algorithms
C<string> name of accepted 'enc' algorithm (only one)
C<ARRAY ref> a list of accepted 'enc' algorithms
C<Regexp> that has to match 'enc' algorithm name
my $payload = decode_jwt(token=>$t, key=>$k, accepted_enc=>'A192GCM');
#or
my $payload = decode_jwt(token=>$t, key=>$k, accepted_enc=>['A192GCM','A256GCM']);
#or
my $payload = decode_jwt(token=>$t, key=>$k, accepted_enc=>qr/^A(128|192|256)GCM$/);
=item decode_payload
C<0> - do not decode payload, return it as a raw string (octects).
C<1> - decode payload from JSON string, return it as perl hash ref (or array ref) - decode_json failure means fatal error (croak).
C<undef> (default) - if possible decode payload from JSON string, if decode_json fails return payload as a raw string (octets).
=item decode_header
C<0> (default) - do not return decoded header as a return value of decode_jwt()
C<1> - return decoded header as a return value of decode_jwt()
my $payload = decode_jwt(token=>$t, key=>$k);
#or
my ($header, $payload) = decode_jwt(token=>$t, key=>$k, decode_header=>1);
=item verify_iss
B<INCOMPATIBLE CHANGE in 0.024:> If C<verify_iss> is specified and
claim C<iss> (Issuer) is completely missing it is a failure since 0.024
C<CODE ref> - subroutine (with 'iss' claim value passed as argument) should return C<true> otherwise verification fails
C<Regexp ref> - 'iss' claim value has to match given regexp otherwise verification fails
C<Scalar> - 'iss' claim value has to be equal to given string (since 0.029)
C<undef> (default) - do not verify 'iss' claim
=item verify_aud
B<INCOMPATIBLE CHANGE in 0.024:> If C<verify_aud> is specified and
claim C<aud> (Audience) is completely missing it is a failure since 0.024
C<CODE ref> - subroutine (with 'aud' claim value passed as argument) should return C<true> otherwise verification fails
C<Regexp ref> - 'aud' claim value has to match given regexp otherwise verification fails
C<Scalar> - 'aud' claim value has to be equal to given string (since 0.029)
C<undef> (default) - do not verify 'aud' claim
B<SINCE 0.036> we handle 'aud' claim when it contains an array of strings. In this case, the check should succeed if at least one
value from the array matches. All checks (CODE, Regexp, Scalar) are performed individually against each member of the array of strings.
=item verify_sub
B<INCOMPATIBLE CHANGE in 0.024:> If C<verify_sub> is specified and
claim C<sub> (Subject) is completely missing it is a failure since 0.024
C<CODE ref> - subroutine (with 'sub' claim value passed as argument) should return C<true> otherwise verification fails
C<Regexp ref> - 'sub' claim value has to match given regexp otherwise verification fails
C<Scalar> - 'sub' claim value has to be equal to given string (since 0.029)
C<undef> (default) - do not verify 'sub' claim
=item verify_jti
B<INCOMPATIBLE CHANGE in 0.024:> If C<verify_jti> is specified and
claim C<jti> (JWT ID) is completely missing it is a failure since 0.024
C<CODE ref> - subroutine (with 'jti' claim value passed as argument) should return C<true> otherwise verification fails
C<Regexp ref> - 'jti' claim value has to match given regexp otherwise verification fails
C<Scalar> - 'jti' claim value has to be equal to given string (since 0.029)
C<undef> (default) - do not verify 'jti' claim
=item verify_iat
C<undef> - Issued At 'iat' claim must be valid (not in the future) if present
C<0> (default) - ignore 'iat' claim
C<1> - require valid 'iat' claim
=item verify_nbf
C<undef> (default) - Not Before 'nbf' claim must be valid if present
C<0> - ignore 'nbf' claim
C<1> - require valid 'nbf' claim
=item verify_exp
C<undef> (default) - Expiration Time 'exp' claim must be valid if present
C<0> - ignore 'exp' claim
C<1> - require valid 'exp' claim
=item leeway
Tolerance in seconds related to C<verify_exp>, C<verify_nbf> and C<verify_iat>. Default is C<0>.
=item ignore_claims
C<1> - do not check claims (iat, exp, nbf, iss, aud, sub, jti), B<BEWARE: DANGEROUS, UNSECURE!!!>
C<0> (default) - check claims
=item verify_typ
B<SINCE 0.036>
C<CODE ref> - subroutine (with 'typ' header parameter value passed as argument) should return C<true> otherwise verification fails
C<Regexp ref> - 'typ' header parameter value has to match given regexp otherwise verification fails
C<Scalar> - 'typ' header parameter value has to be equal to given string
C<undef> (default) - do not verify 'typ' header parameter
=item tolerate_padding
C<0> (default) - ignore Base64 padding characters when validating signature
C<1> - take account of Base64 padding characters when validating signature
=back
=head2 encode_jwt
my $token = encode_jwt(%named_args);
Named arguments:
=over
=item payload
Value of this mandatory parameter can be a string/buffer or HASH ref or ARRAY ref
my $token = encode_jwt(payload=>"any raw data", key=>$k, alg=>'HS256');
#or
my $token = encode_jwt(payload=>{a=>1,b=>2}, key=>$k, alg=>'HS256');
#or
my $token = encode_jwt(payload=>[11,22,33,44], key=>$k, alg=>'HS256');
HASH refs and ARRAY refs payloads are serialized as JSON strings
=item alg
The 'alg' header value is mandatory for both JWE and JWS tokens.
Supported JWE 'alg' algorithms:
dir
A128KW
A192KW
A256KW
A128GCMKW
A192GCMKW
A256GCMKW
PBES2-HS256+A128KW
PBES2-HS384+A192KW
PBES2-HS512+A256KW
RSA-OAEP
RSA-OAEP-256
RSA1_5
ECDH-ES+A128KW
ECDH-ES+A192KW
ECDH-ES+A256KW
ECDH-ES
Supported JWS algorithms:
none ... no integrity (NOTE: disabled by default)
HS256 ... HMAC+SHA256 integrity
HS384 ... HMAC+SHA384 integrity
HS512 ... HMAC+SHA512 integrity
RS256 ... RSA+PKCS1-V1_5 + SHA256 signature
RS384 ... RSA+PKCS1-V1_5 + SHA384 signature
RS512 ... RSA+PKCS1-V1_5 + SHA512 signature
PS256 ... RSA+PSS + SHA256 signature
PS384 ... RSA+PSS + SHA384 signature
PS512 ... RSA+PSS + SHA512 signature
ES256 ... ECDSA + SHA256 signature
ES256K ... ECDSA + SHA256 signature
ES384 ... ECDSA + SHA384 signature
ES512 ... ECDSA + SHA512 signature
EdDSA ... Ed25519 signature
=item enc
The 'enc' header is mandatory for JWE tokens.
Supported 'enc' algorithms:
A128GCM
A192GCM
A256GCM
A128CBC-HS256
A192CBC-HS384
A256CBC-HS512
=item key
A key used for token encryption (JWE) or token signing (JWS). The value depends on C<alg> token header value.
JWS alg header key value
------------------ ----------------------------------
none no key required
HS256 string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
HS384 dtto
HS512 dtto
RS256 private RSA key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
object: Crypt::PK::RSA, Crypt::OpenSSL::RSA, Crypt::X509 or Crypt::OpenSSL::X509
RS384 private RSA key, see RS256
RS512 private RSA key, see RS256
PS256 private RSA key, see RS256
PS384 private RSA key, see RS256
PS512 private RSA key, see RS256
ES256 private ECC key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
an instance of Crypt::PK::ECC
ES256K private ECC key, see ES256
ES384 private ECC key, see ES256
ES512 private ECC key, see ES256
EdDSA private Ed25519 key
JWE alg header key value
------------------ ----------------------------------
dir string (raw octects) or perl HASH ref with JWK, kty=>'oct', length depends on 'enc' algorithm
A128KW string (raw octects) 16 bytes (or perl HASH ref with JWK, kty=>'oct')
A192KW string (raw octects) 24 bytes (or perl HASH ref with JWK, kty=>'oct')
A256KW string (raw octects) 32 bytes (or perl HASH ref with JWK, kty=>'oct')
A128GCMKW string (raw octects) 16 bytes (or perl HASH ref with JWK, kty=>'oct')
A192GCMKW string (raw octects) 24 bytes (or perl HASH ref with JWK, kty=>'oct')
A256GCMKW string (raw octects) 32 bytes (or perl HASH ref with JWK, kty=>'oct')
PBES2-HS256+A128KW string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
PBES2-HS384+A192KW string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
PBES2-HS512+A256KW string (raw octects) of any length (or perl HASH ref with JWK, kty=>'oct')
RSA-OAEP public RSA key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
an instance of Crypt::PK::RSA or Crypt::OpenSSL::RSA
RSA-OAEP-256 public RSA key, see RSA-OAEP
RSA1_5 public RSA key, see RSA-OAEP
ECDH-ES public ECC or X25519 key, perl HASH ref with JWK key structure,
a reference to SCALAR string with PEM or DER or JSON/JWK data,
an instance of Crypt::PK::ECC
ECDH-ES+A128KW public ECC or X25519 key, see ECDH-ES
ECDH-ES+A192KW public ECC or X25519 key, see ECDH-ES
ECDH-ES+A256KW public ECC or X25519 key, see ECDH-ES
=item keypass
When 'key' parameter is an encrypted private RSA or ECC key this optional parameter may contain a password for private key decryption.
=item allow_none
C<1> - allow JWS with C<none> 'alg' header value (which means that token has no signature), B<BEWARE: DANGEROUS, UNSECURE!!!>
C<0> (default) - do not allow JWS with C<none> 'alg' header value
=item extra_headers
This optional parameter may contain a HASH ref with items that will be added to JWT header.
If you want to use PBES2-based 'alg' like C<PBES2-HS512+A256KW> you can set PBES2 salt len (p2s) in bytes and
iteration count (p2c) via C<extra_headers> like this:
my $token = encode_jwt(payload=>$p, key=>$k, alg=>'PBES2-HS512+A256KW', extra_headers=>{p2c=8000, p2s=>32});
#NOTE: handling of p2s header is a special case, in the end it is replaced with the generated salt
You can also use this to specify a kid value (see L</"kid_keys">)
my $token = encode_jwt(payload=>$p, key=>$k, alg => 'RS256', extra_headers=>{kid=>'key1'});
=item unprotected_headers
A hash with additional integrity unprotected headers - JWS and JWE (not available for C<compact> serialization);
=item shared_unprotected_headers
A hash with additional integrity unprotected headers - JWE only (not available for C<compact> serialization);
=item aad
Additional Authenticated Data - scalar value with any (even raw octects) data - JWE only (not available for C<compact> serialization);
=item serialization
Specify serialization method: C<compat> (= default) for Compact JWS/JWE serialization or C<flattened> for Flattened JWS/JWE JSON serialization.
General JSON serialization is not supported yet.
=item zip
Compression method, currently 'deflate' is the only one supported. C<undef> (default) means no compression.
my $token = encode_jwt(payload=>$p, key=>$k, alg=>'HS256', zip=>'deflate');
#or define compression level
my $token = encode_jwt(payload=>$p, key=>$k, alg=>'HS256', zip=>['deflate', 9]);
=item auto_iat
C<1> - set 'iat' (Issued At) claim to current time (epoch seconds since 1970) at the moment of token encoding
C<0> (default) - do not set 'iat' claim
NOTE: claims are part of the payload and can be used only if the payload is a HASH ref!
=item relative_exp
Set 'exp' claim (Expiration Time) to current time + C<relative_exp> value (in seconds).
NOTE: claims are part of the payload and can be used only if the payload is a HASH ref!
=item relative_nbf
Set 'nbf' claim (Not Before) to current time + C<relative_nbf> value (in seconds).
NOTE: claims are part of the payload and can be used only if the payload is a HASH ref!
=back
=head1 SEE ALSO
L<Crypt::Cipher::AES>, L<Crypt::AuthEnc::GCM>, L<Crypt::PK::RSA>, L<Crypt::PK::ECC>, L<Crypt::KeyDerivation>, L<Crypt::KeyWrap>
=head1 LICENSE
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=head1 COPYRIGHT
Copyright (c) 2015-2025 DCIT, a.s. L<https://www.dcit.cz> / Karel Miko
|